| Posted by drec on 06/20/34 11:49 
I need to pass a variable from script1.php to script2.php.  The problemis that these scripts use frames and therefore I am able to pass the
 variable through the URL.  It also does not use forms to set this
 variable, so i cannot pass it this way either.
 
 So to simplify I have :
 
 script1.php
 <?php
 $var1 = value;
 echo '<href="script2.php">link to script2</a>';
 ?>
 
 script2.php
 
 <?php
 echo $var1;
 ?>
 
 How can script2 find this value?
  Navigation: [Reply to this message] |