This is not PHP so does not really belong here but since you asked. Here is a java script that will disable right clicking and display a copyright.
<Script language='Javascript'> <!-- var message='Copyright (c) 1999 Sakki.'; function click(e) { if (document.all) { if (event.button == 2) { alert(message); return false; }} if (document.layers) { if (e.which == 3) { alert(message);return false; }}} if (document.layers) { document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=click; // --></script> -----Original Message----- From: Fifield, Mike [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 12:21 PM To: 'Gunther E. Biernat'; [EMAIL PROTECTED]; 'Php-General (E-mail) Subject: RE: [PHP] Images don't save Actually you can do this if all you are trying to do is disable right clicking. If you are thinking this will stop people from getting your pictures this is not the case. When a picture is viewed by someone it is downloaded to there comp first. No way to disable this. To disable right clicking you would have to do it with java. -----Original Message----- From: Gunther E. Biernat [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 12:17 PM To: [EMAIL PROTECTED]; 'Php-General (E-mail) Subject: Re: [PHP] Images don't save You can't. Period. Simple as that. Oh, and BTW, it's not even a PHP question... On Thu, 18 Apr 2002 20:10:13 +0200, Manu Verhaegen wrote: >Hi, >You can right click on a image on your browser and choose save. >I want to disable this option, how can i do this > > > > >Greetings, > Manu > > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, visit: http://www.php.net/unsub.php > Regards, Gunther E. Biernat -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php