Hi,
I've been trying to parse some data for html, tags and some other custom stuff so it can be used in a google feild.
Does anyone know if an effective day to do this?
I have been trying to manual find things and looping through them but I know it's not working;
# °
while(strpos($desc, '°') != false)
{
$desc=str_replace("°", "", $desc);
}
Thanks