My problem is this:
Users fill out a <FORM> with a <textarea> in it. Once they submit the form I want the information to be sent into hidden fields on the next page (which has another form).
Now if in the <textarea> a user enteres a " (quote) in the next page in the hidden field it will cut off where the " (quote) was entered.
Example: In the textarea i write:
The CD is titled "Ride The Lightning"
Now on the next page will look like this
<input type="hidden" name="whatever" value="The CD is titled ">
How can i prevent this?