Re: [PHP] Right Click Hyperlink

2003-07-31 Thread skate
> Does anyone know if there is anything in PHP or any other language that > would > you can't do this in PHP, physically impossible. you also can't do it with any other server side language. the only way to do it is with a client side language, such as the JavaScript ways posted, or possibly the

Re: [PHP] Right Click Hyperlink

2003-07-31 Thread Joona Kulmala
Does anyone know if there is anything in PHP or any other language that would allow a specific action to occur if a visitor right-clicked on a link. For example, they could left click on it an go to a specified page, and they could also right-click it to go to a different page. Anyone know o

Re: [PHP] Right Click Hyperlink

2003-07-31 Thread desa15
you refer to this var message="some text"; 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); } doc

[PHP] Right Click Hyperlink

2003-07-31 Thread Matt Palermo
Does anyone know if there is anything in PHP or any other language that would allow a specific action to occur if a visitor right-clicked on a link. For example, they could left click on it an go to a specified page, and they could also right-click it to go to a different page. Anyone know of

Re: [PHP] Right Click

2003-04-05 Thread Leif K-Brooks
OF COURSE IT'S OT! The name is PHP: hypertext PREprocessor! This is a list for PHP, not HTML, javascript, or house decorating! daniel wrote: man chill out , message me off list and i can give you a jscript example , as the description says , "hypertext processor", i dont think jscript even ht

RE: [PHP] Right Click

2003-04-05 Thread daniel
man chill out , message me off list and i can give you a jscript example , as the description says , "hypertext processor", i dont think jscript even html is OT ! >= Original Message From Leif K-Brooks <[EMAIL PROTECTED]> = >There NEEDS to be a manual page for this! PHP is SERVER-SIDE!

Re: [PHP] Right Click

2003-04-05 Thread Leif K-Brooks
There NEEDS to be a manual page for this! PHP is SERVER-SIDE! That means that once the page loads (actually, a little before that), PHP is done. IT DOES NOT KEEP RUNNING! IT RUNS ON THE SERVER'S MACHINE, NOT THE CLIENT! RTFA! Shantenese Williams wrote: Does anyone know if there is a funct

Re: [PHP] Right Click

2003-04-05 Thread Chris Hayes
At 02:23 6-4-2003, you wrote: Does anyone know if there is a function in PHP that allows you to right-click on an item, and from there a drop down menu pops up and you can go to another screen, preserving that value that was clicked on? If there is no function for right-clicking, then is there a

[PHP] Right Click

2003-04-05 Thread Shantenese Williams
Does anyone know if there is a function in PHP that allows you to right-click on an item, and from there a drop down menu pops up and you can go to another screen, preserving that value that was clicked on? If there is no function for right-clicking, then is there a way that when you are selecti