try to test it on your server to see if magic quotes is enabled by doing this.
create a file name. mqtest.php and add this code inside.
if(get_magic_quotes_gpc())
{
echo "Magic Quotes is currently enabled on your server.";
}else{
echo "Magic Quotes is currently disabled on your server.";
}