What if I strip the slashes from user input text that my script stores in the MySQL database? When my web site extracts the user input text from the database and displays it on the page what is the liklihood that an un-backslashed single quote or double quote mark will screw up the PHP code in the script that extracts the information from the database?
In other words, I am in a quandry about whether or not to backslash $Variables on a user registration page so that any quote marks the user inputs doesn't mess things up and cause the script to choke. Basically, I'm trying to get it clear in my mind the best way to handle the stripslashes() function regarding user input.
I would appreciate any opinions.
Thanks.
Volitics