Problemas que se van presentando en el camino y tips para solucionarlos.
<?php header('Content-Type: application/download'); header('Content-Disposition: attachment; filename="file.csv"'); header("Content-Length: " . filesize("file.csv")); $fp = fopen("file.csv", "r"); fpassthru($fp); fclose($fp);?>
Post a Comment
No comments:
Post a Comment