How to allow users to download zip files from web using php? -
this question has reply here:
how zip folder , download using php? 5 answersi have log folder on ubuntu machine under /var/www/projectlog/logs
has zip versions of diffrent log files. want allow users download these zip files webpage.
is possible in php ?
try this:
header('content-disposition: attachment; filename=resumes.zip'); header('content-type: application/zip'); readfile("/var/www/projectlog/logs/<name_of_zip>");
or just,
readfile("/var/www/projectlog/logs/<name_of_zip>"); // rest taken care automatically browsers
your php file owner should have read access path: /var/www/projectlog/logs/
php
No comments:
Post a Comment