How to filter & escape data from Injection attacks in PHP!
Ask any security expert! He will say you should always filter POST and GET data by escaping them before insertion into the database. In that way your scripts can be safe from SQL injection attacks.
Many php programmers are so lazy and just directly insert the POST data without filtering it like
mysql_query("INSERT into `users` (`name`,`email`) VALUES (‘$_POST[name]‘,’$_POST[email]‘)"):
which is truly a bad example of not checking input data. Detect and protect important data from fraudulent access by having data security software
A very …

