View Single Post
Old 04-03-2009, 04:42 AM  
nation-x
Confirmed User
 
nation-x's Avatar
 
Industry Role:
Join Date: Mar 2004
Location: Rock Hill, SC
Posts: 5,370
You can also do it on the fly. This is what I had to do... but in my script everything runs through index.php...

Code:
$body = ob_get_contents();
$body = utf8_strip_non_ascii($body);
$body = str_replace('Ã', '', $body);
$body = str_replace(' Â', '', $body);
$body = str_replace('Â', '', $body);
ob_end_clean();
print $body;
nation-x is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote