Original geschrieben von CoreX
Aber dein Vorschlag wäre auch ne Möglichkeit. Danke :-)
Aber dein Vorschlag wäre auch ne Möglichkeit. Danke :-)

<?php
if ($_GET['goto']=="Home"):
$title=".:::[ Welcome to CoreX ]:::.";
$home="<b>::Home::</b>";
ElseIf ($_GET['goto']!=="Home"):
$home="Home";
else:
endif;
?>
<?php Echo'<td><a href="index.php?goto=Home" title="Home|News">'.$home.'</a></td>';?>
if (isset($_GET["goto"]) && $_GET["goto"]=="Home")
{
echo "<a href=\"index.php?goto=Home\" title=\"Home|News\"><font color=\"red\">:Home:</font></a>";
}
else
{
echo "<a href=\"index.php?goto=Home\" title=\"Home|News\"><font color=\"green\">:Home:</font></a>";
}
........
a:link { font-weight:normal; color: #ffffff; text-decoration:none }
a:visited { font-weight:normal; color: #ffffff; text-decoration:none }
a:hover { font-weight:bold; color: #ffffff; text-decoration:none }
a:active { font-weight:bold; color: #ffffff; text-decoration:none }
.........
<a href="index.php?goto=Home" title="Home|News">:Home:</a>
Einen Kommentar schreiben: