Just curious what method is better for turning off magic_quotes_runtime in case it is turned on in PHP.ini
ini_set("magic_quotes_runtime", "0");
OR
set_magic_quotes_runtime(0);
I have already developed a workaround for magic_quotes_gpc() that I use in my scripts, which isn't the same as magic_quotes_runtime.