I have the following query that does not work when the text that is past to it from a form has apostropies, or pound signs, or other kinds of characters in the '$new_url' or the $new_note'.
(!mysql_query( "insert into onmylist_person (username, person, notes) values ('$valid_user', '$new_url', '$new_note')"))
I don't get any errors, but it just does not get written to the database.
What do I need to do to it to make it work?
Thanks.