Posted by H@C0 on 04/07/07 11:48
On Sat, 07 Apr 2007 00:21:39 GMT, boclair <boclair@bigpond.net.au> wrote:
Thanks for your response.
I have something like this with image links:
<?php
$thisfile=(basename ($_SERVER['PHP_SELF']));
if ($thisfile=="page1.php")
{$page1="style='display:none;'";}
else {$page1="";}
if ($thisfile=="page2.php")
{$page2="style='display:none;'";}
else {$page2="";}
?>
<a href="page1.php" <img src="img1.jpg"></a>
<a href="page2.php" <img src="img2.jpg"></a>
But I want the link of the current page to be unckickable and the mouse
pointer to be default. Any hints?
Thanks in advance.
Hans (Holland)
[Back to original message]
|