duannaxin9975 2015-09-03 14:05
浏览 41
已采纳

使用PHP文件仅从mySQL数据库导出某些列

I've created a .php file that users will access via hyperlink within our web portal to download a database to a CSV file and I can get it to download the entire database but I only want to export the columns FirstName LastName Postcode & Email.

What do I add/amend to the code below to do this? I assume it's in the mysql_query line but can't figure out the command todo this.

    <?php

// Database Connection

$host="localhost:/tmp/mysql5.sock";
$uname="dbo1234567";
$pass="password";
$database = "db1234567"; 

$connection=mysql_connect($host,$uname,$pass); 

echo mysql_error();

//or die("Database Connection Failed");
$selectdb=mysql_select_db($database) or 
die("Database could not be selected"); 
$result=mysql_select_db($database)
or die("database cannot be selected <br>");

// Fetch Record from Database

$output = "";
$table = "tbl_Coach"; // Enter Your Table Name 
$sql = mysql_query("select * from $table");
$columns_total = mysql_num_fields($sql);

// Get The Field Name

for ($i = 0; $i < $columns_total; $i++) {
$heading = mysql_field_name($sql, $i);
$output .= '"'.$heading.'",';
}
$output .="
";

// Get Records from the table

while ($row = mysql_fetch_array($sql)) {
for ($i = 0; $i < $columns_total; $i++) {
$output .='"'.$row["$i"].'",';
}
$output .="
";
}

// Download the file

$filename = "coachdb.csv";
header('Content-type: application/csv');
header('Content-Disposition: attachment; filename='.$filename);

echo $output;
exit;

?>
  • 写回答

1条回答 默认 最新

  • dpkrbe395930 2015-09-03 14:11
    关注

    Just edit the

    select *
    

    bit, like

    select FirstName, LastName, Postcode, Email from $table
    

    (and try not to use the deprecated mysql_* functinons, use PDO instead if possible).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料