Eckstein, David wrote:

>Hello, 
>
>I'm having a bit of trouble passing variables to PHP scripts and am hoping
>
Reading the release notes for a modern php version, it states that 
register_globals is off by default. Its better if you leave if off and 
use $_GET['var'] or $_POST['var'] instead of turning it on again, but 
your choice.

><?PHP
>echo $quid;
>?>
>
>I get the error message:
>
>Notice: Undefined variable: quid in test.php on line 2
>
It means what it says. You have used the value of a variable without 
first giving it a value (in this case because register_globals is off). 
Please refer to the excellent manual.

HTH
Chris


-- 
PHP Install Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to