Hello, Wednesday, May 12, 2004, 12:42:30 PM, you wrote:
gr> script 2 gr> _________________________________________ gr> second script ... that is detailedresults.php gr> <?php gr> print $name; gr> print "$name"; ?>> You've probably got Register Globals turned off (and quite rightly) which means try this in script 2: echo $_GET['name']; echo $_GET['firstfile']; See the section of the PHP manual on register globals to understand why. -- Best regards, Richard Davey http://www.phpcommunity.org/wiki/296.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php