advanced code snippet search
sekihin on 12/23/10
php csv
12/23/10 06:28pm
URL: http://opqr.jp/2007/09/php.html
<?php $file = "sample.csv"; $file_length = filesize($file); header("Content-Disposition: attachment; filename=$file"); header("Content-Length:$file_length"); header("Content-Type: application/octet-stream"); readfile ($file);?>
Report this snippet Tweet
Comment:
You need to login to post a comment.