ok this is what i got to:
function my_slashes($content) {
$find = array("\'", '\"');
$rep = array("'", '"');
return str_replace($find, $rep, $content);
}
and it works to a point...
but the one that you have have three sets... if i have the three you said the page wont load.. (can someone else test that??)
so now " and ' work fine however.. those that have \" that are GENUINE like my print "<font size=\"3\">";
come out as \"
which i guess the third replace statement would fix IF it worked...
why cant I have three? whats the solution?? 🙁
Thanks for your help so far its been great.. just not quite there yet...