I am truing to filter html characters out like this
$user = $_POST["user"]; //Get username from <form>
mysql_real_escape_string($user); //Against SQL injection
strip_tags($user); //Filter html characters out
But for some reason this is not filtering html characters out. I don't know why, could it by mysql_real_escape_string?
strip_tagswill not filter out all HTML, just some tags. Next to that, blindly applying some esacpe or strip functions does not add much security, you need to know what you specifically do. That's the hard point about input validation, sanitization and building database queries. – hakre Dec 20 '11 at 18:33