Jump to content

[SOLVED] button


spooke2k

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.