"magic quotes" is very, very stupid idea. To make portable code you need:
- Function like that:
function kill_magic($S)
{
if(get_magic_quotes_gpc()) return stripslashes($S);
return $S;
}
2: All income data affected by magic quotes must be processed by this function.