|
|
 |
RE: FN-FORUM: php funny
date posted 19th November 2007 14:55
[snip]
>
> You really should be echoing $_POST["Photoend_20_Sd"] and make sure
> register_globals is "off"
You really *shouldn't* be using $_POST or $_REQUEST on these
echoes, as you should be cleaning *all* user-inputted data before
processing it. As such, having it as a variable that has been cleaned
(assuming it's being cleaned of course :-) ) is a far better bet than
just passing on potentially harmful inputs through the pages.
Me.
http://www.ozbon.com
>
> To check the variables, shove a print_r($_POST); in your script to see what
> you're getting.
>
|
 |
|