好吧,我是 php 新手。现在我要做的就是在数据库表中插入一些数据。
这是示例代码
<?php
include("DbMethods.php");
connectToDb();
$name=$_POST['name'];
$location=$_POST['location'];
$item=$_POST['item'];
$result=mysql_query("SELECT id FROM `customer` WHERE `name`='".$name."' AND `location`='".$location."' AND `item`='".$item."')")or die(mysql_error());
?>
这就是错误的样子
check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
究竟是什么问题?