Posted by Janwillem Borleffs on 10/02/05 17:50
Fifou wrote:
> This returns the following error :
> Notice: Undefined variable: myvar in c:\program
> files\easyphp1-8\www\test.php on line 3
>
> I thought that "myvar" should be known by the script because i send it
> through the URL. But it does not work. Do you know why ?
>
Try:
<?php print $_GET['myvar'] ?>
Read:
http://www.php.net/register_globals
JW
[Back to original message]
|