Hello I have an issue with my mySQL queries and insertions.
When members write in the text area these characters, like:
' " < >
and some others..
the mySQL will give a database error.
What I can do to avoid this?
I think it is a usualthing in PHP.
Thank you
Use mysql_real_escape_string() on the data before you try to insert it.
This will also protect you from SQL injection.