[snip]
I just setup php on my linux box and have been messing with a tutorial, 
and have had some issues.

The tutorial says any name=value pairs in the querystring "automatically

creates a variable with the name and value the querystring indicated". 
This does not seem to be happening.

I have installed:
RedHat 9.0
Mysql 4.0.13
PHP 4.3.2
[/snip]

It is because the tutorial is pre PHP 4.x where register_globals = off
in php.ini. Your form variables will be in either $_GET['variablename']
or $_POST['variablename'], or you can turn register_globals 'on'

HTH!

Jay



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

Reply via email to