I have a page which takes input from a form, this gets POSTed to another page, where the user can check their info... for this page they can either go back to the last page, or they can insert it into the DB...
When the variable contians a string such as:
'This is the "cool" string'
in the second page, the " are printed. When posting it back to the previous page, I then use stripslashes($string) but the string is cut off at the first "
HOw can I ensure that the " are maintained in the string!?! I have read lots about magic_quotes_gpc (which, by the way, is ON) and addslashes(), but I can't seem to get it working...
Any help, ? Many thanks...