[PHP] Disable pic copy/save?

2003-01-23 Thread Anthony Rodriguez
Hi! A client wants to test market two versions of an advertising but wants to disable the users' ability to copy/save the ads (right click, copy/save). How can this be done in PHP? Thanks! Anthony F. Rodriguez ([EMAIL PROTECTED]) -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Disable pic copy/save?

2003-01-23 Thread Jason Wong
On Thursday 23 January 2003 17:52, Anthony Rodriguez wrote: Hi! A client wants to test market two versions of an advertising but wants to disable the users' ability to copy/save the ads (right click, copy/save). How can this be done in PHP? It can't be done, period. You need to get the data

RE: [PHP] Disable pic copy/save?

2003-01-23 Thread Clarkson, Nick
PROTECTED] Subject: [PHP] Disable pic copy/save? Hi! A client wants to test market two versions of an advertising but wants to disable the users' ability to copy/save the ads (right click, copy/save). How can this be done in PHP? Thanks! Anthony F. Rodriguez ([EMAIL PROTECTED]) -- PHP General

Re: [PHP] Disable pic copy/save?

2003-01-23 Thread af
Not true -- you can use JavaScript to catch right-click events and do something creative with them, or disable them entirely. But that, of course, is a client-side scripting issue, which has nothing to do with server-side languages such as PHP. Cheers, Alex On Thursday 23 January 2003

Re: [PHP] Disable pic copy/save?

2003-01-23 Thread Martin Hudec
H it might be done by checking which mouse button is pressed using javascript :) but i think this works only in Iexplore ;)...i used such code on my webpageit shows only copyright etcanyway user does not need to rightclik and save if he knows where is his browser cache located.

Re: [PHP] Disable pic copy/save?

2003-01-23 Thread Negrea Mihai
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 There is no client side solution. The only one I see is serverside: to put a text on the image, a bit transparent so that it does not affect very much the image but it can't be used. - -- Negrea Mihai http://www.negrea.net On Thursday 23 January

Re: [PHP] Disable pic copy/save?

2003-01-23 Thread MH
If someone wants your pic, he will take it, even if Alt+Print Screen is the last resort. The best way is to watermark it with text to make it unusable, but even with some patients this can be edited out if they want it badly enough. Mh Jason Wong [EMAIL PROTECTED] wrote in message [EMAIL

RE: [PHP] Disable pic copy/save?

2003-01-23 Thread Uttam
alternate to right click is Shift-F10 in IE which i think can not be handled by javascript. uttam -Original Message- From: Martin Hudec [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 15:47 To: [EMAIL PROTECTED] Subject: Re: [PHP] Disable pic copy/save? H it might