Hello Friends,
I want to add photo gallary and wallpaper section in my site so that if i upload any photo and give a download link its show only that picture but its not downloading. Example : If we view any photo in FACEBOOK so we can see a DOWNLOAD option and if we click on that the picture is download , my ques is how can i do like that option? with javascript ? do u know that? then please tell me that
header(“Content-Type: application/octet-stream; “);
header(“Content-Transfer-Encoding: binary”);
header('Content-Disposition: attachment; filename=”‘.basename($file).’”');
readfile($file);
?>
i get this but will u tell me how can i make download links…