Turn off magic_quotes_gpc in PHP
Answer:
magic_quotes_gpc is a legacy PHP function that no longer be supported in PHP 6.0. So you should disable them to make sure your application not break in the future version of PHP.
To disable it, edit the php.ini
vi /etc/php.ini
Locate and set
magic_quotes_gpc = off;
Remember to restart web server such as Apache if needed.