ini_set and magic_quotes_gpc
Posted: Wed Aug 30, 2006 8:43 am
When I execute this
I get this
which basicaly means ini_set() failed. I wonder why? I have magic_quotes_gpc set turned off in my php.ini (PHP 5.1.4). Any ideas?
Code: Select all
$result = ini_set('magic_quotes_gpc', '1');
var_dump($result);Code: Select all
bool(false)