Alright so here is what's happening...
I have a form, and the user needs to enter a description into a textbox which is named desc
The form uses the POST method, so when it goes to the next page it posts the input from desc no problem. The thing that I need to fix is that if the user enters any of the following: ' " \ then it messes up.
This is basically what happens...
' = \'
" = \"
\ = \
How do I fix this?