Save the database query result to Excel_PHP tutorial

Source: Internet
Author: User
Save the database query results to Excel. Excel can easily process data. if the database data can be read into an excel file, it can be easily processed. Convert database data to Excel excel. php? Phpcla Excel can easily process data. if the database data can be read into an excel file, it can be easily processed.

Convert database data to Excel excel. php

 wirtetoexcel($path,$data);     }   function wirtetoexcel ($fn,$data)     {       $fp=fopen($fn,"wb");       fwrite($fp,$data);       fclose($fp);    }}?>

Create an object of this class, and then call the method of this object to export database data to Excel.

   
   
 start();?>
 
 
companyname_cn companyname_en" name position tel fax email website product

save("Excel/data.xls"); ?>

The key code is actually a few lines:

// Contains the class file include_once ("excel. php "); // Create an excel class object $ Excel = new Excel (); // call the start () method of the object $ Excel-> start (); // call the save () file of the object to claim the excel file. $ Excel-> save ("Excel/data.xls ");

Bytes. Convert database data to Excel excel. php? Phpcla...

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.