Is it possible to have a command at the beginning of my .php code that will disable magic quotes? I'd like to not have to change the server config, because the manager of it is a PITA to deal with.
Thanks
set_magic_quotes_runtime(0); // Turn it off set_magic_quotes_runtime(1); // Turn it on
John Cornett