Page is a not externally linkable
- Code, Content, and Presentation
-- PHP Server Side Scripting
---- Remove Special Characters


4serendipity - 12:33 am on Feb 16, 2012 (gmt 0)


You could try using a combination of str_replace() and chr()




$original = array(chr(10),
chr(13),
chr(147),
chr(148),
chr(151));

$fixed = array(" ",
" ",
'"',
'"',
'-');

return str_replace($original, $fixed, $input);


Thread source:: http://www.webmasterworld.com/php/4417500.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com