I have a form. When users submit the data, my script checks the text for php/html with
$text1 = strip_tags($text);
Then it inserts the data into the database. But when users submit something like this: "I totally <3 this website", it only inserts: "I totally". How can I fix this?
(I need to remove the tags)
strip_tags. – Lekensteyn Aug 6 '11 at 18:01