ok.. i have this in my code.
$text=htmlspecialchars($text);
$text = str_replace('>', '>', $text);
$text = str_replace('<br>', '<br>', $text);
$text = str_replace('<b>', '<b>', $text);
$text = str_replace('</b>', '</b>', $text);
$text = str_replace('<i>', '<i>', $text);
$text = str_replace('</i>', '</i>', $text);
BUT after writing out a lil 'post' in my form with something like
i'm
it wont remove the \'
i cant seen to get around this.. been fiddling with it all nite.. any suggestions?
please help
~Rob