10/10/2018, 09:57
Tạo trang download bằng php?
Giờ em muốn làm 1 trang download bằng php mục đích chính là để đếm coi có bao nhiu lượt download mà ko biết làm thế nào, các bác ai rành php giúp em với.
Link để download có dạng như: http://abc.com/?id=123
Link để download có dạng như: http://abc.com/?id=123
Bài liên quan
Xem thêm: http://webdesign.about.com/od/php/ht/force_download.htm
header('Content-disposition: attachment; filename=rapid.zip');
header('Content-type: application/zip');
readfile("http://rapidleech2.googlecode.com/files/Rapidleech_PlugMod_v40.zip");
?>
if(isset($_GET['id'])){
$file = $_GET['id'];
$info = pathinfo($file);
//// Get file link from db
if(file_exists($file)){
header('Content-disposition: attachment; filename='.$file);
header('Content-type: application/'. $info['extenstion']);
readfile($file);
////Tang lu?t download here
}
}
else{
exit('You don\'t have any download');
}
?>