Update
This commit is contained in:
@@ -36,7 +36,7 @@ class Database
|
||||
|
||||
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("s", $answer0);
|
||||
$statement->bind_param("s", $answer1);
|
||||
|
Reference in New Issue
Block a user