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 制裁名单20240508芯片厂商
  • ¥20 易康econgnition精度验证
  • ¥15 线程问题判断多次进入
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接