hi im trying to replace a double-quote with a X
example:
$page = str_replace("\"","X",$page);
but its not working, it was working before my host update his PHP
how can replace the double-quote in (str_replace) ?
Thank you
just checking, but you do know that htmlspecialchars() will replace the double quotes with "'s so that they're not a bother to you when you echo them out to html?