<a href="download.php">Download sample "CSV" file</a>
download.php
<?php
ob_start();
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=example.csv");
readfile('example.csv');
ob_end_flush();
?>
download.php
<?php
ob_start();
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=example.csv");
readfile('example.csv');
ob_end_flush();
?>
No comments:
Post a Comment
Thank you for your Comment....