Hi
Ive got a problem with a script. magic_quotes_gpc and magic_quotes_runtime are both on on the server.
When i print out a raw POSTed array i get single quotes quoted. So if i submit the following:
Jon's test
and then
print '<pre>';
print_r($_POST);
print '</pre>';
...I get the following:
Jon''s test
Is this beacuse magic_quotes_gpc and magic_quotes_runtime are both on?