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