Hi,
I need to replace speach marks ("") but only if they are NOT in tags! Here i am replaceing all:
$content = str_replace('"', """, $content);
But it also replaces them in:
<img name=hedcase src="image.jpg" border=0>
giving:
<IMG src="image.jpg" border=0 name=hedcase>
How do i stop this?
Thanks