Re: [PHP] Re: $_POST won't work for me

2005-12-01 Thread Unknown Unknown
I have heard from someone you must keep turning register_globals on and off while restarting your web server for $_POST and $_GET to work properly although I'm not very sure.. On 12/1/05, Norbert van Nobelen <[EMAIL PROTECTED]> wrote: > > register_globals=on will result in a totally non transpara

Re: [PHP] Re: $_POST won't work for me

2005-12-01 Thread Norbert van Nobelen
register_globals=on will result in a totally non transparant way of variables from a post being usuable. For example: You post the variable tt_name with a value, than echo $tt_name will show that value without you having to assign it from the post. It is not only insecure, it is also very bad co