Simon Willison’s Weblog

Subscribe

Magic quotes solution

16th August 2002

Pink Goblin (otherwise known as HarryF) explains why magic quotes are evil. This is an issue that every PHP developer should be aware of, as it can cause all kinds of problems in your scripts if you ignore it. He suggests using a custom myAddSlashes() function which only calls addslashes() if magic quotes are turned off. I have an alternative solution—chose your preferred setting (quotes on or off) and apply it at run time to all incoming data in one go. My code for doing this is available here. By a bizzare coincidence I wrote the script this morning, then spotted a link to the Pink Goblin article on tidak ada literally five minutes after finishing it.

This is Magic quotes solution by Simon Willison, posted on 16th August 2002.

Next: Comments improvement

Previous: New memes make Baby Jesus cry

Previously hosted at http://simon.incutio.com/archive/2002/08/16/magicQuotesSolution