目标 MYSQL 中的单个记录在 php 用户界面中导出为 CSV

发布于 2024-10-21 02:09:15 字数 111 浏览 6 评论 0原文

最好的方法是什么?

记录通过 GUI 和标识记录 ID 的变量 $s 进行标识。

您能否发布您使用过的帮助您做到这一点的资源(即教程)。

非常感谢任何帮助!!!

What would be the best method to do this?

the Record is identified via a GUI and a variable $s which identifies the record ID.

could you please post resources that you have used (i.e. tutorials) that have helped you do this.

Any Help is greatly appreciated !!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

Smile简单爱 2024-10-28 02:09:15

首先

使用 MySQL select like

$query = "
 SELECT  
 CONCAT('\"',ifnull(firstname,''),'\",\"',ifnull(middlename,''),'\",\"',ifnull(lastname,''),'\"')    
 FROM relatie   
 WHERE relatie.id = ".$s."   
   AND relatie.SomeOtherThing > 1  
 ORDER BY relatie.id     
 LIMIT 1;
 ";
$result = mysql_query($query);

ifnull 非常重要,因为否则 CONCAT 中的 null 字段将使整个 CONCAT 为 null,假设 middlename 为 null,此代码将输出类似以下内容:
“约翰”、“”、“史密斯”
如果没有 ifnull,它将不会输出任何内容,因为 null-middlename 将使整个 concat 表达式为 null。

仅当 id 不唯一时才需要 Order bylimit ,因为您说过只需要一行。

接下来放入 CSV 标头并输出您之前在 $result 中保存的行。

header("Content-type: application/csv");
header("Content-Disposition: attachment; filename=file.csv");
header("Pragma: no-cache");
header("Expires: 0");

echo $result."\n";

First

use MySQL select like

$query = "
 SELECT  
 CONCAT('\"',ifnull(firstname,''),'\",\"',ifnull(middlename,''),'\",\"',ifnull(lastname,''),'\"')    
 FROM relatie   
 WHERE relatie.id = ".$s."   
   AND relatie.SomeOtherThing > 1  
 ORDER BY relatie.id     
 LIMIT 1;
 ";
$result = mysql_query($query);

The ifnull's are very important because otherwise null fields in a CONCAT will make the whole CONCAT to be null, suppose middlename is null, this code will output something like:
"Johan","","Smith"
Without the ifnull's it will just output nothing, because the null-middlename will make the whole concat expression null.

The Order by and limit are only needed if the id is not unique, because you said you only want one line.

Next put a CSV header in and output the line you saved in $result earlier.

header("Content-type: application/csv");
header("Content-Disposition: attachment; filename=file.csv");
header("Pragma: no-cache");
header("Expires: 0");

echo $result."\n";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文