FuelMedlem sedan okt. 20001 285 inlägg Är det nån som vet hur man kan förbättra min lilla kod snutt ?
<?
$standard = "#FFFFCC";
$aktuell = "#FFCC00";
$hemsidan = getenv("REQUEST_URI");
$fil = basename($hemsidan);
if($fil == "start.php")
{
$td1 = "$aktuell";
}
else
{
$td1 = "$standard";
}
if($fil == "sida1.php")
{
$td2 = "$aktuell";
}
else
{
$td2 = "$standard";
}
if($fil == "sida2.php")
{
$td3 = "$aktuell";
}
else
{
$td3 = "$standard";
}
?>
<style>
a:link { font-family:verdana; font-size:11px; color:black; font-weight:bold; text-decoration:none; }
a:hover { font-family:verdana; font-size:11px; color:blue; font-weight:bold; text-decoration:none; }
a:visited { font-family:verdana; font-size:11px; color:black; font-weight:bold; text-decoration:none; }
a:active { font-family:verdana; font-size:11px; color:black; font-weight:bold; text-decoration:none; }
td { font-family:verdana; font-size:11px; }
</style>
<body>
<table border="1" cellpadding="3" cellspacing="0">
<tr>
<td bgcolor="<? echo $td1; ?>"><a href="start.php">Start</a></td>
<td bgcolor="<? echo $td2; ?>"><a href="sida1.php">Sida 1</a></td>
<td bgcolor="<? echo $td3; ?>"><a href="sida2.php">Sida 2</a></td>
</tr>
</table>
<font face="verdana" size="2"><b>Detta är startsidan</b></font>
------------------
¤ Palt är gott! ¤
nanneMedlem sedan dec. 19991 749 inlägg $fil = basename(getenv("REQUEST_URI"));
if($fil=="start.php") {
$td1 = "$aktuell";
$td2 = "$standard";
$td3 = "$standard";
}elseif($fil == "sida1.php") {
$td1 = "$standard";
$td2 = "$aktuell";
$td3 = "$standard";
}elseif($fil == "sida2.php") {
$td1 = "$standard";
$td2 = "$standard";
$td3 = "$aktuell";
}
Orkar inte tänka längre ty det är fredag...
------------------
Computer, Machine, Panzermench!
nanne.net
FuelMedlem sedan okt. 20001 285 inlägg He he .. ok Tack ändå Nanne ..
------------------
¤ Palt är gott! ¤
emissionMedlem sedan dec. 19996 721 inlägg <?
$hemsidan = getenv("REQUEST_URI");
$fil = basename($hemsidan);
$standard = "#FFFFCC";
$aktuell = "#FFCC00";
function getcolor($whatpage) {
global $fil,$standard,$aktuell;
if ($whatpage == $fil) {
return $aktuell;
} else {
return $standard;
}
}
?>
<style>
a:link { font-family:verdana; font-size:11px; color:black; font-weight:bold; text-decoration:none; }
a:hover { font-family:verdana; font-size:11px; color:blue; font-weight:bold; text-decoration:none; }
a:visited { font-family:verdana; font-size:11px; color:black; font-weight:bold; text-decoration:none; }
a:active { font-family:verdana; font-size:11px; color:black; font-weight:bold; text-decoration:none; }
td { font-family:verdana; font-size:11px; }
</style>
<body>
<table border="1" cellpadding="3" cellspacing="0">
<tr>
<td bgcolor="<? echo getcolor("start.php"); ?>"><a href="start.php">Start</a></td>
<td bgcolor="<? echo getcolor("sida1.php"); ?>"><a href="sida1.php">Sida 1</a></td>
<td bgcolor="<? echo getcolor("sida2.php"); ?>"><a href="sida2.php">Sida 2</a></td>
</tr>
</table>
<font face="verdana" size="2"><b>Detta är startsidan</b></font>
------------------
-------------------
What a waste it is to lose one's mind. Or not to have a mind is being very wasteful. How true that is.
Dan Quayle