Tag: SQL injections

SQL injections / Escape special characters like ‘,”,

In the simplest case, special characters may simply break your query. In a more extreme case, a hacker might use SQL injections to gain access to your application. So it is important that we escape these special characters with a (backslash). That is, insert a backslash before each special character. We can escape special characters …

Continue reading

Permanent link to this article: https://blog.openshell.in/2010/11/sql-injection-php/