C O N O S C E N Z A
web data management
Il nostro è un team che si occupa ormai da piu' di un decennio della risoluzione delle problematiche informatiche, in particolare ci piace poter offrire la nostra competenza in ambito telematico, dalla progettazione su misura della vostra infrastruttura web, alla realizzazione del vostro software e dei vostri portali.
Web

Save image link

22/11/2008

.. save image as

Here's a simple php script that will allow your site users to save image from your web pages by a simple link click without using right mouse button.

Change image name ..that's all 


;) 

  

<?
if ($_GET['save']=="yes"){
header('Content-Disposition: attachment; filename=elearner.jpg');
include 'http://www.cybernetica.it/webster/images/banners/pbannerelearner.jpg';
}else{
echo "<a href=?save=yes>Save image as</a>";
}
?>



If you have problem within the include method for particular server directives, use readfile instead include as the follow line:

  


include 'http://www.cybernetica.it/webster/images/banners/pbannerelearner.jpg';

readfile('http://www.cybernetica.it/webster/images/banners/pbannerelearner.jpg');