PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Because your PHP installation has "magic_quotes" turned on. Turn it off if you can edit php.ini or use a .htaccess. Otherwise you're down to using stripslashes(), which plain sucks but will fix your problem.
Chris Corbyn wrote:Because your PHP installation has "magic_quotes" turned on. Turn it off if you can edit php.ini or use a .htaccess. Otherwise you're down to using stripslashes(), which plain sucks but will fix your problem.
Yes, I prefer .htaccess. What line/s do I add to disable magic_quotes?