Form TextArea PHP parser
Form TextArea PHP parser
- Started
- Last post
- 1 Response
- tobor
Why does the PHP add a forward-slash to single and double-qoutes from POST text?
Is there anyway to make PHP not do this?
- chimchim0
there is a global php config called magic quotes that is set to on...it's for preparing data for proper insertation into databases.
you can simply do this to your textarea variable in the form page.
stripslashes($mytextarea);