Update
This commit is contained in:
@@ -37,11 +37,7 @@ class Database
|
|||||||
public function addQuestion($question, $answer0, $answer1, $answer2, $solution)
|
public function addQuestion($question, $answer0, $answer1, $answer2, $solution)
|
||||||
{
|
{
|
||||||
$statement = $this->connection->prepare("INSERT INTO questions(question, answer0, answer1, answer2, solution) VALUES(?, ?, ?, ?, ?)");
|
$statement = $this->connection->prepare("INSERT INTO questions(question, answer0, answer1, answer2, solution) VALUES(?, ?, ?, ?, ?)");
|
||||||
$statement->bind_param("s", $question);
|
$statement->bind_param("ssssi", $question, $answer0, $answer1, $answer2, $solution);
|
||||||
$statement->bind_param("s", $answer0);
|
|
||||||
$statement->bind_param("s", $answer1);
|
|
||||||
$statement->bind_param("s", $answer2);
|
|
||||||
$statement->bind_param("i", $solution);
|
|
||||||
return $statement->execute();
|
return $statement->execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user