If you will notice, your error is just a warning. If you go to your PHP.ini
file, you should verify that you have the line:

error_reporting  =  E_ALL & ~E_NOTICE

as your type of error reporting. If you have warnings enabled, you will
always get warnings of your vars not being initialized with some value (even
though it is through the GET var). And, as someone else suggested, make sure
you have register globals on, which is default in php 4.0.3 and higher.

Hope that is of help.

~nicole amashta
www.aeontrek.com


"Travis Wyatt" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Here is my situation...I can't seem to get variables to pass from a GET or
POST method to a PHP script.  To see for yourself go to:
> http://www.socopc.com/test.php?testvar=hello_world
>
> The source of "test.php" is...
> <html>
> <? for ($x=0;$x<5;$x++) { echo $x; } ?>
> <br><? print "testvar=\"".$testvar."\""; ?>
> <br><br><br><? phpinfo(); ?>
> </html>
>
>
> And as you will see, I get the error.
>   Warning: Undefined variable: testvar in
c:\root\domains\socopc.com\test.php on line 3
>   testvar=""
>
> Indicating that the variable is empty and has not been passed?!
> I'm running Win2k Server w/ Apache and PHP 4.1.1.
>
> If someone could look at that page (included are most of my settings).
And help me fix my PHP configuration?  Thanks!
> ~ Travis
>
>



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

Reply via email to