我目前正在尝试制作应用程序,您可以通过Firebase数据库与人聊天,我已设法检索数据并将数据设置到数据库中。但是当我从流中检索数据时,我只能使用Messagebox查看它。显示或任何类型的系统内容。
我想将结果添加到列表框中但不要让我这么做。
这是代码(我也尝试删除静态)
if ($result) {
header("Content-type: text/csv");
header("Content-Disposition: attachment; filename=dailyReportTestPHP.csv");
header("Pragma: no-cache");
header("Expires: 0");
$fp = fopen('php://output', 'w');
fputcsv($fp, $headers);
while ($row = $result->fetch_row()) {
fputcsv($fp, $row);
}
fclose($fp);
die;
}