EDIT:ADDED THE REST OF THE FILE.
I'm working on a Database class for a project of mine. However, I'm having difficulties with mysqli. The code makes it to "entered query" but never makes it to "test", and no errors are thrown. I'm not sure what's going on. I'm new to PHP, btw.
<?
class Database {
private $connect;
function __construct($host, $user, $password, $database) {
$this->connect = new mysqli($host, $user, $password, $database);
if (mysqli_connect_errno()) {
printf("Connection failed: %s\n", mysqli_connect_errno());
} else {
printf("Connect succeded!");
}
}
function __destruct() {
mysqli_close($connect);
printf("Connection closed.");
}
public function query($query) {
printf("entered query");
if ($stmt = $connect->prepare($query)) {
printf("test");
mysqli_stmt_execute($stmt);
foreach (mysqli_stmt_fetch($stmt) as $result) {
printf($result + "\n");
}
} else {
printf("something went wrong..");
}
mysqli_stmt_close($stmt);
}
}
?>
It's very possible stuff after "test" is wrong. I'm not there yet, though :P
SELEcTbecause you are fetching. But you never calledbind_result()to bind columns into output variables. You cannot iterate over a fetch withforeach()as you have done - MySQLi works by binding variables to columns which are populated each timefetch()is called. – Michael Berkowski Nov 28 '12 at 19:28$mysqlidefined? – Madara Uchiha Nov 28 '12 at 19:30