I\'m quite new to PHP so sorry if sounds such an easy problem... :)
I\'m having an error message when inserting content which contains quotes into my db. here\'s wha
Your code
$sql="INSERT INTO articles (title, body, date) VALUES ('$title','$body','$nowdate'),";
should be as follows
$sql="INSERT INTO articles (title, body, date) VALUES ('$title','$body','$nowdate')";
comma should not be there at the end of query