magic quotes in php
In PHP, “magic quotes” is a feature that automatically escapes certain characters in user-submitted data with backslashes. It was introduced in PHP 3 as a way to help prevent cross-site scripting (XSS) attacks and SQL injection attacks by automatically escaping special characters that are often used in such attacks. Here is an example of how … Read more