I know that mysqli_prepare tuning is used to prepare SQL queries and protect them against SQL Injection.
I found two pages about SQL Injection:
I'm starting to study on the subject, and I was wondering if the mysqli_prepare function can prevent such cases, or if it would need "something else" in my PHP script besides mysqli_prepare.
My question is:
Does using mysqli_prepare prevent ALL SQL Injection attacks, or is it restricted to the main types of SQL Injection attacks?