请在我的编码中需要帮助,我有一个名为Books的数据库,名为OpenBooks的表我想将用户输入的html表单添加到表中并回显确认。
<?php
$Title = $_POST['Title'];
$Author = $_POST['Author'];
$Series = $_POST['Series'];
$Price =$_POST['price'];
//database connection
$connection = mysqli_connect('localhost', 'root', '','books');
if(!$connection){
die("Database connection failed");
}
$query = "INSERT INTO OpenBooks(Title,Author,series,price)";
$query .= " VALUES ('$Title', '$Author', '$series', '$price')";
$result = mysqli_query($connection, $query);
}
?>
答案 0 :(得分:0)
if (!$result) {
die('Invalid query: ' . mysql_error());
}
else {
echo 'yay, done';
}
您需要$Price
代替price
,其他变量从大写字母开始。