0
I know that mysqli_prepare shutdown is used to prepare SQL queries and protect them against SQL Injection.
I found two pages about SQL Injection:
- https://www.owasp.org/index.php/SQL_Injection_Prevention_Cheat_Sheet
- https://www.netsparker.com/blog/web-security/sql-injection-cheat-sheet/
I’m starting to study on the subject, and I was wondering if the function mysqli_prepare can prevent these cases, or if I would need "something else" in my PHP script besides mysqli_prepare.
My question is:
Using mysqli_prepare prevents ALL SQL Injection attacks, or is restricted to the main types of SQL Injection attacks ?
Possible duplicity http://answall.com/questions/3864/como-prevenir-inje%C3%A7%C3%A3o-de-c%C3%B3digo-sql-no-meu-c%C3%B3digo-php? Rq=1
– Maurivan