InterviewSolution
| 1. |
What Is Sql Injection And How Do You Deal With That ? |
|
Answer» SQL injection is a technique utilized by hackers to get access into your database by using malicious SQL statements. Using this, anyone can GAIN complete access to your database without any authorization or permission. To START with one need to USE mysql_real_escape_string() to filter the user input data, before passing onto the sql STATEMENT. SQL injection is a technique utilized by hackers to get access into your database by using malicious SQL statements. Using this, anyone can gain complete access to your database without any authorization or permission. To start with one need to use mysql_real_escape_string() to filter the user input data, before passing onto the sql statement. |
|