11111
Disabling Magic Quotes
Пример 31-1. Disabling magic quotes server side - An example that sets the value of these directives to Off in php.ini. For additional details, read the manual section titled How to change configuration settings.
- If access to the server configuration is unavailable, use of .htaccess is also an option. For example:
|
- In the interest of writing portable code (code that works in any environment), like if setting at the server level is not possible, here's an example to disable - magic_quotes_gpc at runtime. This method is inefficient so it's preferred to instead set the appropriate directives elsewhere.
-
Why not to use Magic Quotes
Сокрытие PHP 22222