2024-05-19 00:05
WELCOME TO INSTALOADED FORUM

Home
Contact Us
Advert With Us

*Post reply · Invite friends · From end
* MYKEMINI Hello friends this post is about Download Script to Download any File using PHP. So in this you will learn how to download a file in PHP but also you need to know this download actually force the browser to download file. But this is very easy simple few steps you just have to follow this code.
In below download script, these are mainly two functions are used one isheader()and another function isreadfile()which I will describe later. Using these function you are able to download any file. And this type of download code we have used most of the web application.
In this post we will see two types of download button, which works same. One download button is Filename with link to download it means when you hover over the mouse pointer to download button you will see the file name. Another download button won’t see any file name or path.
Theheader()function describe sends a raw HTTP header file to the client side. And It is also very important thatheader()must be called before any output is sent.
Thereadfile()function reads and writes a files to the client side. This function returns TRUE or FALSE and an error on failure.
Using these functions with script you can download any file very easily. This script is also very simple, easy to understand. So lets start with simple example with live demo..
» Download Link With Filename
» » index.php
<a href ="download.php?filename=logo.jpg"><span>Download Link With Filename</span></a>
Copy code


» »download.php
<?php
$file 
$_GET['filename'];
$download_path 'file/'.$file;
$file_to_download $download_path// file to be downloaded
header ("Expires: 0");
header ("Last-Modified: " .gmdate("D, d M Y H:i:s") . " GMT");
header ("Cache-Control: no-store, no-cache, must-revalidate");
header ("Cache-Control: post-check=0, pre-check=0"false);
header ("Pragma: no-cache");  header("Content-type: application/file");
header ('Content-length: '.filesize($file_to_download));
header ('Content-disposition: attachment; filename='.basename($file_to_download));
readfile ($file_to_download);
exit;
?>

Copy code
.....................................................(Continue)...
2016-08-31 05:49 · Reply · (0)
* MYKEMINI * MYKEMINI » » css
<style>
.main_area{ margin:0 auto; width:400; text-align:center; margin-top:200px;}
.main_area a{ text-decoration:none;}
.main_area span{ font-size:25px; background:#df4662; color:#FFFFFF; padding:5px 10px; border:1px solid bc344d; border-radius:5px;}
</style>

Copy code

» Download Link Without Filename
» » index.php
<a href ="download2.php"><span>Download Link Without Filename</span></a>
Copy code

» » download2.php
<?php
$download_path 
'file/logo.jpg';
$file_to_download $download_path// file to be downloaded
header ("Expires: 0");
header ("Last-Modified: " .gmdate("D, d M Y H:i:s") . " GMT");
header ("Cache-Control: no-store, no-cache, must-revalidate");
header ("Cache-Control: post-check=0, pre-check=0"false);
header ("Pragma: no-cache");  header("Content-type: application/file");
header ('Content-length: '.filesize($file_to_download));
header ('Content-disposition: attachment; filename='.basename($file_to_download));
readfile ($file_to_download);
exit;
?>

Copy code

» » css
<style>
.main_area{ margin:0 auto; width:400; text-align:center; margin-top:200px;}
.main_area a{ text-decoration:none;}
.main_area span{ font-size:25px; background:#df4662; color:#FFFFFF; padding:5px 10px; border:1px solid bc344d; border-radius:5px;}
</style>

Copy code
2016-08-31 13:39 · Reply · (0)

Online: Guests: 1

INSTALOADED | RECENT POSTS



post Created at 2017-01-15
Top Worst Things You Should Stop Doing Online10 years ago, what the internet use to be is not... Read More »
post Created at 2017-01-06
The Number Of Internet Users In Nigeria Reduced To 92.4million - NCC The number of internet users in Nigeria’s... Read More »
post Created at 2016-12-24
Glo Put an End to Blackberry Internet Service (BIS)I'm pretty sure that lots of Android device users... Read More »
post Created at 2016-12-18
Super Mario Run Arrives on iOSNintendo unveiled the iOS version of Super Mario... Read More »
post Created at 2016-10-29
Airtel free 5GB via IMEI  TweakingHi lovely viewer and welcome to this lovely post.... Read More »
post Created at 2016-10-29
MTN 4G LTE Users: You Can Now  Get Free MTN 5GB Data Reward*Even if 75% of cities in Nigeria are yet to... Read More »
post Created at 2016-10-11
Facebook Launches Market Place: Where You Can Buy & Sell Any ItemsFacebook has gone beyond just a social media where... Read More »
post Created at 2016-08-27
Whatsapp Will No Longer Work On These Phones »See List«At the end of 2016, we will no longer support the... Read More »
post Created at 2016-08-27
How to get 2Gb with just #200 on EtisalatThis is aNight Plan– Take Note!! All the Networks... Read More »
post Created at 2016-08-27
Woow..! WhatsApp To Share Users’ Phone Numbers With FacebookThe instant messaging app has updated its privacy... Read More »

Instaloaded Forum Owned By Michael Anthony
Mozilla 3.139.80.15 | 1 | 1 | 60 | 124 | 101471 |
© INSTALOADED » FORUM™ 2024


Ring ring