Without seeing your PHP code this is caused by the ' in the string.
This would cause your problem.
PHP Code:
$string="I'm givin' her all she's got, Captain, but we need more power!";
$result = mysql_query ("INSERT INTO table (field) VALUES ('$string')");
There are 2 many single quotes in the field insert value.
If you do this, using the "american" quotes, it should work
PHP Code:
$string="I'm givin' her all she's got, Captain, but we need more power!";
$result = mysql_query ("INSERT INTO table (field) VALUES (`$string`)");
Bookmarks