Jump to content

MySQL Syntax Error FRUSTRATING!


a_bains

Recommended Posts

I get this error with the code below:

 

Could not update PC serials: 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 'case='case', psu='psu', cpu='cpu', mobo='mobo', ram='ram', hdd='hdd', video='vid' at line 1

 

 

<?php

$title="Update PC";

include("header.php");

echo "<div id='nav'><a href='details.php'>Details</a> | <a href='workorder.php'>Add Work Order</a> | <a href='addpc.php'>Add PC</a> | <a href='index.php'>Search</a></div>";

require("connect.php");

if ($submit == "yes") {

$sql_serial = "UPDATE computers SET case='case', psu='psu', cpu='cpu', mobo='mobo', ram='ram', hdd='hdd', video='video', drives='drives', pci='pci', other='other' WHERE computer_id=$computerid";
mysql_query($sql_serial) or die('Could not update PC serials: ' . mysql_error());

Link to comment
https://forums.phpfreaks.com/topic/93168-mysql-syntax-error-frustrating/
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.