spooke2k Posted June 7, 2007 Share Posted June 7, 2007 i have a set of images on a website and i want to create a button for each one that then brings up save file pop up like websites if u download a file so that they can select which image they wish to click so its more simple than right click etc does anyone know how to do this. so basically click button find image relation to that button and then gives a pop up so that they can save file please Spooke2k Many thanks Link to comment https://forums.phpfreaks.com/topic/54558-solved-button/ Share on other sites More sharing options...
spooke2k Posted June 7, 2007 Author Share Posted June 7, 2007 anyone got any ideas on how i can get the button thing to work. Spooke2k have googled it and read but cant find answer must be a way. Link to comment https://forums.phpfreaks.com/topic/54558-solved-button/#findComment-269881 Share on other sites More sharing options...
spooke2k Posted June 7, 2007 Author Share Posted June 7, 2007 any a while of searching i have found what i wanted and hope this helps others in future as well as it has helped me. $file = 'http://etc'; header('Content-Description: File Transfer'); header('Content-Type: application/force-download'); header('Content-Length: ' . filesize($filename)); header('Content-Disposition: attachment; filename=' . basename($file)); readfile($file); ?> Link to comment https://forums.phpfreaks.com/topic/54558-solved-button/#findComment-269985 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.