All of my forms are validated in such a way that if they fail validation, the form fields get their values back, so the user doesn't have to redo all the fields.
My problem is, that if a user enters a single or double quote, and the form fails validation, the quote comes back escaped... in the form \'
Anyone know if there is a way to avoid this? The idea of removeslashes() on each variable that comes in on all my forms is not an appealing one.