Php export csv or xls file project_php tutorial

Source: Internet
Author: User
Php exports csv or xls file programs. Due to work requirements, we need to export the data in the mysql database to execel for use today, and then I found it on the Internet that it was so simple, because as long as the csv file is used, it is OK to separate the files, next, I want to export the data in the mysql database to execel for use due to work needs. then I found it on the Internet that it was so simple, because the csv file only needs ", "It's okay to separate them. let's take a look at the instance.

Include ("../inc/connect. php ");
$ Date = date ("Y-m-d ");
$ Filename = $ Date. ". csv ";
$ Table = isset ($ _ GET ['tid'])? $ _ GET ['tid']: '';
Header ("Content-type: application/vnd. ms-excel ");
Header ("Content-Disposition: filename =". $ Filename );

Echo "user name, real name, contact information, contact QQ, contact address, email address rn ";
$ SQL = "Select * from gx_member where datediff (m_time ,'". date ("Y-m-d H: I: s "). "') <= $ Table order by id desc ";
$ Result = mysql_query ($ SQL );
While ($ rs = mysql_fetch_array ($ Result )){
Echo $ rs ['m _ name']. ','. $ rs ['m _ realname']. ",". $ rs ['m _ tel ']. ",". $ rs ['m _ QQ']. ",". $ rs ['m _ address']. ",". $ rs ['m _ mail']. "rn ";
}

?>

We used to export the csv file. there is another way to export the xls file. you just need to modify it.

Header ("Content-type: application/vnd. ms-excel ");
Header ("Content-Disposition: filename =". $ Filename );

It's almost done.

For original site reprinted, please indicate www.111cn.cn/phper/php.html

Else, separate them and then OK. below I...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.