Hi Max,
I was just building a new form for my own website where I have some free-form textarea fields and I found that the Autogenerated code needed to have addslashes() to save correctly if there were any special characters in the field - in this case apostrophes in words like didn't.
I changed the Autogenerated code to read "'".addslashes($_POST['textarea_1'])."' ," and the form now works well.
Bob
PS I expected to have to add stripslashes for the data display but that seems fine.
Jooomla 1.0.13 with magic_quotes_gpc OFF
I was just building a new form for my own website where I have some free-form textarea fields and I found that the Autogenerated code needed to have addslashes() to save correctly if there were any special characters in the field - in this case apostrophes in words like didn't.
I changed the Autogenerated code to read "'".addslashes($_POST['textarea_1'])."' ," and the form now works well.
Bob
PS I expected to have to add stripslashes for the data display but that seems fine.
Jooomla 1.0.13 with magic_quotes_gpc OFF