对此一无所知,可以使用一些见解。
我尝试只选择某些column_names
(不是列数据)设置为 CSV 文件的标题。
现在,我只能用
$result = mysql_query("SHOW COLUMNS FROM ".$table);
问题是它提取了所有列名,而我只想要某些列的数据。要获取数据值,此查询可以正常工作:
$values = mysql_query("SELECT ".$columns." FROM ".$table." WHERE channel_id=26");
例如,如何选择或仅显示我列出的列的列名$columns
?
编辑- 我在这里添加我的完整 PHP 以提供更多上下文。第 7 行是我的问题。
<?php
$table = 'exp_channel_data'; // table we want to export
$columns = 'entry_id, field_id_26, field_id_27, '; // only the columns we want to show
$file = 'registrations-from-web'; // csv name.
$result = mysql_query("SHOW COLUMNS FROM ".$table);
$count = mysql_num_rows($result);
$csv_output = "";
if ($count > 0)
{
while ($row = mysql_fetch_assoc($result))
{
$csv_output .= $row['Field'].", ";
}
}
$csv_output .= "\n";
$values = mysql_query("SELECT ".$columns." FROM ".$table." WHERE channel_id=26");
while ($rowr = mysql_fetch_row($values))
{
for ($j=0; $j<$count; $j++)
{
$csv_output .= $rowr[$j].", ";
}
$csv_output .= "\n";
}
$filename = $file."_".date("d-m-Y_H-i",time());
header("Content-type: application/vnd.ms-excel");
header("Content-disposition: csv" . date("Y-m-d") . ".csv");
header( "Content-disposition: filename=".$filename.".csv");
print $csv_output;
exit;
?>