Hi drupal expert am newbie for drupal. i have installed print module in drupal 6.13. It installation and configuration done successfully. But if i click print link In print page not contain form data.

if i use form with static data its work fine instead of data fill by like

echo $name;

. I need to print a page using php code.

following code work:


   echo '<td>Thiru</td>';

following not work:

   $name=$_POST['name'];
  echo '<td>'. $name.'</td>';

please help for this..

thanks in advance...