Rumah >pembangunan bahagian belakang >tutorial php >PHP表单提交到数据库并查询 插入出错,

PHP表单提交到数据库并查询 插入出错,

WBOY
WBOYasal
2016-06-06 20:36:341057semak imbas

<code><?php echo $_POST['bookname']."<br/>";
echo $_POST['price']."<br>";
echo $_POST['type']."<br>";

$bookname = $_POST['bookname'];
$price = $_POST['price'];
$type1 = $_POST['type'];
require_once 'conn.php';
$result = mysql_query("insert into book (`bookname`,`price`,`time`) value ('$bookname','$price','$type1')");
dump($result);
// if($result){
// echo "添加成功";
// }
// else{
//  echo '添加失败';
// }
?>
</code>

回复内容:

<code><?php echo $_POST['bookname']."<br/>";
echo $_POST['price']."<br>";
echo $_POST['type']."<br>";

$bookname = $_POST['bookname'];
$price = $_POST['price'];
$type1 = $_POST['type'];
require_once 'conn.php';
$result = mysql_query("insert into book (`bookname`,`price`,`time`) value ('$bookname','$price','$type1')");
dump($result);
// if($result){
// echo "添加成功";
// }
// else{
//  echo '添加失败';
// }
?>
</code>

建议你看下 INSERT INTO 的正确写法。。

INSERT INTO tb () VALUES ...

是 values 而不是 value

http://database.51cto.com/art/201005/202402.htm

Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn