> [snip]
> Try using $_POST['fname'] instead of $fname.
> [/snip]
> Or $_GET['fname'] depending on your form method
Or even $_REQUEST['fname'], which doesn't care about which
method is specified in the form. :p
Chris
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: htt
[snip]
Try using $_POST['fname'] instead of $fname.
[/snip]
Or $_GET['fname'] depending on your form method
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Try using $_POST['fname'] instead of $fname. This just means that
register_globals is probably set to off in php.ini, which is the
recommended setting. Take a look at the section on predefined variables
in the PHP manual for more on this:
http://www.php.net/manual/en/language.variables.predef
3 matches
Mail list logo