> 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
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
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
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
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
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!
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
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
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
9 matches
Mail list logo