How to fetch data in excel or generate excel file in PHP

File structure for this tutorial :

  • config.php (database connection file)
  • index.php (For fetching data)
  • genrate-excel.php (For generating excel file)

Create a SQL table tblemployee.
Structure of sql table employe .

Now insert some data into this table.

Index.php in this file we will  read the data from database.

genrate-excel.php in this file we will fetch the data from database and generate excel file for the same data.

Click Here To Free Access : https://phpgurukul.com/how-to-fetch-data-in-excel-or-generate-excel-file-in-php/

header(“Content-type: application/octet-stream”);
header(“Content-Disposition: attachment; filename=”.$filename.”-Report.xls”);
The content-type should be whatever it is known to be, if you know it. application/octet-stream is defined as “arbitrary binary data” in RFC 2046″.
Means “I don’t know what the hell this is. Please save it as a file, preferably named $filename.”-Report.xls”.
header(“Pragma: no-cache”);
cache-control is the HTTP/1.1 implementation . cache-control  used to prevent the client from caching the response.
header(“Expires: 0”);
The Expires header specifies when content will expire, or how long content is “fresh.” After this time, the portal server will always check back with the remote server to see if the content has changed.
Expires: 0
The value 0 indicates that the content expires immediately and would have to be re-requested before being displayed again.

How to run this script

1. Download and Unzip file on your local system.
2. Put this file inside root directory
3. Database Configuration

Database Configuration

Open phpmyadmin
Create Database empdata
Import database empdata.sql (available inside zip package)
Open Your browser put inside browser “http://localhost/phpexcl”

Click Here to Video Download : https://phpgurukul.com/?smd_process_download=1&download_id=7952

 

PHP Gurukul

Welcome to PHPGurukul. We are a web development team striving our best to provide you with an unusual experience with PHP. Some technologies never fade, and PHP is one of them. From the time it has been introduced, the demand for PHP Projects and PHP developers is growing since 1994. We are here to make your PHP journey more exciting and useful.

Website : https://phpgurukul.com