Here's the error:
Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in /usr/home/ccamaj/public_html/mm/cmsadmin/editArticle.php on line 33
Here's the snippet where the error is:
$insertQuery = "UPDATE cmsarticles SET (title,author,image,summary,section,thearticle) VALUES (".
"'".$_POST['title']."', ".
"'".$_POST['author']."', ".
"'".$_POST['image']."', ".
"'".$_POST['summary']."', ".
"'".$_POST['section']."', ".
"'".$HTTP_POST_VARS['thearticle']."')
WHERE id="'".$_POST['ID']."' LIMIT 1;";
Any help is appreciated, thanks!