Jump to content

php help


dannybrazil

Recommended Posts

Can anybody help me here,

 

I have this code that I have NO clue whats wrong, in other pages it it working

 

if ($_POST['submit'] == 'Edit Report')
{

$id = $_REQUEST['id'];

$group = $_POST['group'];
$group_clean = mysql_real_escape_string($group);

$report = $_REQUEST['report'];
$report_clean = mysql_real_escape_string($report);


mysql_query(" UPDATE teacher_report SET  group='$group_clean' , report='$report_clean'   WHERE id=$id ") or die(mysql_error());





header("Location: report.php?msg=Your report was edited Successfully!");	

exit;
}

 

I get this error:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'group='Gestamphhh' , report='checking' WHERE id=1' at line 1

 

help ?

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/235699-php-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.