我的名字是Anna,我刚开始用html css javascript php和mysql编程。我希望我的表单能够发送到我的数据库,但每次我尝试这个错误都会显示出来:
警告:PDOStatement :: execute():SQLSTATE [HY093]:参数号无效:绑定变量的数量与第38行/var/www/send_festival.php中的令牌数量不匹配
我知道这意味着什么,但我无法找到它出错的地方。有没有人给小费看?'
提前感谢!
代码:
<?php
include("opendb.php");
function generate_salt() {
$fh=fopen('/dev/urandom','rb');
$random=fgets($fh,16);
fclose($fh);
return $random;
}
$fname = $_POST["fname"];
$forgan = $_POST["forgan"];
$fbegin = $_POST["fbegin"];
$fend = $_POST["fend"];
$floc = $_POST["floc"];
$fprov = $_POST["fprov"];
$fprice = $_POST["fprice"];
$fgenre = $_POST["fgenre"];
$fdesc = $_POST["fdesc"];
$fweb = $_POST["fweb"];
$success = false;
try {
$stmt = $db->prepare('INSERT INTO Festivals (festival_name, festival_organisator, festival_begin, festival_end, festival_location, festival_province, festival_priceregular, festival_genre, festival_description, festival_website) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)');
$stmt->bindValue(1, $fname, PDO::PARAM_STR);
$stmt->bindValue(2, $forgan, PDO::PARAM_STR);
$stmt->bindValue(3, $fbegin, PDO::PARAM_STR);
$stmt->bindValue(4, $fend, PDO::PARAM_STR);
$stmt->bindValue(5, $floc, PDO::PARAM_STR);
$stmt->bindValue(6, $fprice, PDO::PARAM_STR);
$stmt->bindValue(7, $fgenre, PDO::PARAM_STR);
$stmt->bindValue(8, $fdesc, PDO::PARAM_STR);
$stmt->bindValue(9, $fweb, PDO::PARAM_STR);
$status = $stmt->execute();
if ($status) {
header('Location: /add_festival.php?success=true');
}
}
catch (Exception $e) {
echo 'Caught exception: ', $e->getMessage(), "\n";
}
?>
答案 0 :(得分:3)
删除这些行:
$stmt->bindValue(7, $fgenre, PDO::PARAM_STR);
$stmt->bindValue(8, $fdesc, PDO::PARAM_STR);
$stmt->bindValue(9, $fweb, PDO::PARAM_STR);
并在第6次绑定后添加以下行:
$stmt->bindValue(7, $fprov, PDO::PARAM_STR);
$stmt->bindValue(8, $fgenre, PDO::PARAM_STR);
$stmt->bindValue(9, $fdesc, PDO::PARAM_STR);
$stmt->bindValue(10, $fweb, PDO::PARAM_STR);
答案 1 :(得分:3)
在准备声明中计算您的问号。它们是10,所以你需要绑定10个变量,但你只绑定9个。
$stmt->bindValue(1, $fname, PDO::PARAM_STR); //festival_name
$stmt->bindValue(2, $forgan, PDO::PARAM_STR); //festival_organisator
$stmt->bindValue(3, $fbegin, PDO::PARAM_STR); //festival_begin
$stmt->bindValue(4, $fend, PDO::PARAM_STR); //festival_end
$stmt->bindValue(5, $floc, PDO::PARAM_STR); //festival_location
$stmt->bindValue(6, $fprice, PDO::PARAM_STR); //festival_province
$stmt->bindValue(7, $fgenre, PDO::PARAM_STR); //festival_priceregular
$stmt->bindValue(8, $fdesc, PDO::PARAM_STR); //festival_genre
$stmt->bindValue(9, $fweb, PDO::PARAM_STR); //festival_description
???? //festival_website
答案 2 :(得分:2)
您忘记添加$stmt->bindValue(7, $fprovince, PDO::PARAM_STR)
,声明中缺少该列的值。