mysqli を使用して mysql の重複エントリをチェックする関数を作成しようとしていますが (私にはまったく新しい)、このエラーを回避できません。私は 3 つの php ファイルを持っています: db.php - 関数を含む db 接続 functions.php (db.php が必要) と submit.php - 入力を受け取るファイル。
デシベル.php:
<?php
define("HOST", "localhost"); // The host you want to connect to.
define("USER", "user"); // The database username.
define("PASSWORD", "pass"); // The database password.
define("DATABASE", "db_list"); // The database name.
$mysqli = new mysqli(HOST, USER, PASSWORD, DATABASE);
?>
functions.php:
require 'db.php';
function check($str, $mysqli) {
$checkdupe = $mysqli->prepare("SELECT name FROM list WHERE str = ?"); //line giving me error
$checkdupe->bind_param("s", $str);
$checkdupe->execute();
$checkdupe->store_result();
if ($checkdupe->num_rows > 0) {
//dupe found
return true;
} else {
//no dupe
return false;
}
}
submit.php
require 'functions.php';
if (isset($_POST['name'])) {
if (check($_POST['name'], $mysqli) == true) { //added $mysqli parameter
echo "success!";
} else {
echo "fail;
}
} else {
echo 'invalid post';
}
?>