![]() |
|
|
+ Search |
![]()
|
Sep 21st, 2001 18:45
Steph Bairey, John Bomhold,
After the user submits the data but before you use it (i.e. insert into database, or display on the screen) use the STRIPSLASHES function. user inputs "I'm a new user." your data is "I\'m a new user." if data is stored in variable called $answer: $answer = stripslashes($answer); Your new data is "I'm a new user." HTH