Jump to content

Mysql Insert Help


fantity

Recommended Posts

For some reason this query is giving me an error:

 

<?php
$con = mysql_connect("host","user","pass");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}


mysql_select_db("db", $con);



mysql_query("INSERT INTO joblist (title, desc, pay)
VALUES ('title', 'description','pay')");


if (mysql_errno()) {
die('Invalid query: ' . mysql_error());
}




mysql_close($con);
?>

 

Error: Invalid query: 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 'desc, pay) VALUES ('title', 'description','pay')' at line 1

 

27zwvmg.png

Link to comment
https://forums.phpfreaks.com/topic/271882-mysql-insert-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.