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!
In a website that I built I am having a problem with visitor text submissions. For some reason PHP is outputting a "\" character before every aposthrophe character that is in the submission. Go to http://x.mcad.edu:16080/~aaron/animatio ... Design.php for a look at what I'm talking about.
I believe that php does that so that you can use the direct $_POST information to store it in a database etc without having to manually add all the \ to the text before storing. I could be wrong though
if you dont like getting the quotes in your GET, POST, and COOKIE data, there are some configuration settings in php.ini (for windows, andyway) where you can turn them off. they are in the "Magic Quotes" section of the config file. all you have to do is set them to "Off".