我在 PHP 和 mysql 中编写了一个查询,它工作正常并返回数据我只是想将它重写为 Mysqli 函数。
这就是我想出的,但我得到一个 500 错误的文件。
if (mysqli_connect_errno()) {
printf("Could not talk to the database: ", mysqli_connect_error());
exit();
}
$query("SQL QUERY WORKS FINE");
$data = array();
if ($result = $con->query($query)) {
$tempData = array();
while ($row = $result->fetch_object()) {
$tempData = $row;
array_push($data, $tempData);
}
echo json_encode($myArray);
}
/* free result set */
$result->close();
$con->close();