I am trying to update a record from a form. Ot says that I have an error at Line 5. I've created a table to spit back the information and everything displays correctly. Can someone tell me what this means and what I've done incorrectly?
<?
$sql = "UPDATE CSRs
SET
CSRID ='$CSRID',
CFName = '$CFName',
CLName = '$CLName',
Group = '$Group',
ReportsTo = '$ReportsTo',
Skillset = '$Skillset',
Location = '$Location',
Level = '$Level',
Novel = '$Novel',
Review = '$Review'
WHERE CSRID = '$CSRID'";
$result = @mysql_query($sql, $conn) or die(mysql_error());
?>