$str=eregi_replace("\"",""",$str);
$str=eregi_replace("\'","'",$str);
$str=eregi_replace("\","\",$str);
$str=eregi_replace("<", "<",$str);
$str=eregi_replace(">", ">",$str);
i have been trying to use the above lines to try and filter the text that users input on my website, but they...