Skip to content

Instantly share code, notes, and snippets.

View SharifClick's full-sized avatar
😇
Coding.......

Sharif Ahmed SharifClick

😇
Coding.......
View GitHub Profile
@SharifClick
SharifClick / Export CSV.php
Created January 24, 2022 17:08 — forked from SimonEast/Export CSV.php
PHP Example: Stream a CSV File to Browser with GZIP Compression (exporting from MySQL/PDO)
<?php
/**
* This script performs a full dump of a database query into
* CSV format and pipes it directly to the browser.
*
* - YES, the browser will save the CSV file to disk
* - YES, it should support large files without using massive amounts of memory
* - YES, it compresses the request using GZIP to reduce download time
*/