RE: FN-FORUM: php funny
date posted 19th November 2007 14:43
>
> I have a few input fields similar to
>
> id="Photoend_20_Sd" value="">
>
>
> They have a value to start with but when you receive the
> posted form the field is empty.
Your field is "Photoend_20_Sd", you are, however, echoing the value of a
global variable "Photoend_20", which is not the same ;-)
You really should be echoing $_POST["Photoend_20_Sd"] and make sure
register_globals is "off"
To check the variables, shove a print_r($_POST); in your script to see what
you're getting.