我的目标是创建一个页面,点击按钮后我可以下载包含特定CSV
结果的SQL Statement
文件。
这是我的按钮:
<?php
if (Env::value('profile')){
echo "<form action='/profiles/?s=".$sys->id."&profile=".$_GET["profile"]."&submit=true' method='get' class='asholder' enctype=\"multipart/form-data\">";
echo "<input type=\"hidden\" name=\"sys\" value=\"".$sys->id."\" />";
echo "<input type=\"hidden\" name=\"profile\" value=\"".$_GET["profile"]."\" />";
echo "<input type='submit' name='submit' class=\"button\" value='Generate CSV'>";
echo "</form>";
}
?>
这是我的经纪人:
if (isset($_GET['submit'])){
ob_end_clean();
$q11="select * from profile";
dump_csv($db, $q11, 'profile');
}
这是我的方法,它应该创建CSV文件:
function csv_field($s)
{
return str_replace('"', '""', str_replace("\r","\n", iconv('UTF-8', 'Windows-1250', $s)));
}
function dump_csv($db, $q, $fname)
{
header('Content-type: text/csv');
header("Content-Disposition: attachment; filename=\"$fname.csv\"");
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
foreach ($db->query($q)->fetchall(PDO::FETCH_ASSOC) as $row) {
if (!$first_row++) {
foreach ($row as $key => $value)
echo csv_field($key).";";
echo "\n";
}
foreach ($row as $key => $value)
echo csv_field($value).";";
echo "\n";
//var_dump($row);
//exit;
}
}
是的,我在页面开头有ob_start();
。
问题在于,而不是仅包含查询结果的表:select * from profile
我在HTML
中获得了整个CSV
页面代码。
有人能指出我在做错的地方吗?
当前输出:
<form action='/?page=profile' method='post' class='asholder'>
<table class='list questionaire'>
<tr class='tabledesc'><th colspan='3'>person</th></tr>
<tr class='columndesc'>
" <td style='width: 170px" '>name</td>
" <td style='width: 224px" '>mith</td><td>
" <div class='hint'>enter the name<br />"
" and role of person</b></div>"
" </td>"
</tr>
</table>