我總是使用普通查詢將數據插入到數據庫中,但現在我想使用預先準備好的語句。我已經在使用語句來選擇我所有文件中的數據,但插入從未奏效......現在我再次用完了想法。也許有人可以看到我做錯了什麼。插入語句不起作用
$animeId = $_POST['animeId'];
$username = $_POST['username'];
$rating = $_POST['rating'];
$story = $_POST['story'];
$genre = $_POST['genre'];
$animation = $_POST['animation'];
$characters = $_POST['characters'];
$music = $_POST['music'];
//Datum auslesen
$date = date("Y-m-d H:i:s");
if($insertRating = $con->prepare("INSERT INTO anime_rating (animeId, rating, story, genre, animation, characters, music, user, date) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?"))
{
$insertRating->bind_param("iiiiiiiss", $animeId, $rating, $story, $genre, $animation, $characters, $music, $username, $date);
$insertRating->execute();
$insertRating->close();
}
'(?,?,?,?,?,?,?,?,?「)''是錯誤的..」在第一個之後) –
非常感謝您..這就是問題所在。我真的不知道該說些什麼 – Taiga