In my app the user enters text into a textfield. He then hits the submit button that adds this info to a MYSQL DB.
My problem is, IF the user enters some text characters the DB is not updated.
For example: If the user enters "This is not the best program i have seen" It will work fine BUT if he enters
"This isn't the best program i've seen" It will not work because of the " ' " apostrophe's in the sentence. For some reason the DB will not update. I dont get any errors or anything.
I dont know if this could be the problem or not, but when i log into my PHPAdmin section to edit my DB there is this message. I think magic quotes have to do with how the characters are stored in the DB?
"Warning: You haven't enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it."
Anyone know how i can fix this so the user can enter any characters they wish?
Thanks!😃