Sagt halt gleich, ihr verarscht mich
hab auf meiner haupt index.php die links , hier ausschnitt das alles zu viel für 1 post ist
<tr> <td> </td> <td><a href="index.php?action=member">::Member</a></td> </tr> <tr> <td> </td> <td><a href="index.php?action=server">::Server</a></td> </tr> <tr> <td> </td> <td><a href="index.php?action=join">::Join us</a></td> </tr> <tr> <td> </td> <td><a href="index.php?action=fight">::Fight us</a></td> </tr> <tr> <td> </td> <td><a href="index.php?action=liga">::Liga</a></td> </tr> <tr> <td> </td> <td><a href="index.php?action=sponsoren">::Sponsoren</a></td> </tr> <tr> <td> </td> <td><p><a href="index.php?action=irc">::IRC</a></p></td> </tr>
und die werden dann in eine andere tabelle included
<?php switch($action) { case "news": include("news.php"); break; case "member": include("member.php"); break; case "join": include("join.php"); break; case "joinverarbeitung": include("joinverarbeitung.php"); break; case "irc": include("irc.php"); break; case "aufnahmebedingungen": include("aufnahmebedingungen.php"); break; case "server": include("server.php"); break; case "fight": include("fight.php"); break; case "fightverarbeitung": include("fightverarbeitung.php"); break; case "godfather": include("godfather.php"); break; case "coolkiller": include("coolkiller.php"); break; case "downloads": include("downloads.php"); break; case "liga": include("liga.php"); break; case "sponsoren": include("sponsoren.php"); break; case "serverstatus": include("serverstatus.php"); break; case "wars": include("wars.php"); break; case "eS": include("eS.php"); break; case "upload": include("upload.php"); break; case "crazy": include("crazy.php"); break; case "gb": include("./gb/gb.php"); break; case "foxx": include("foxx.php"); break; case "adelpha": include("adelpha.php"); break; case "schizo": include("schizo.php"); break; case "puschel": include("puschel.php"); break; case "mg": include("mg.php"); break; case "m0": include("m0.php"); break; case "pr0f": include("pr0f.php"); break; case "wes": include("wes.php"); break; case "reptile": include("reptile.php"); break; case "blade": include("blade.php"); break; case "history": include("history.php"); break; default: include("news.php"); break; } ?>
und dann noch die index von dem script
index.php <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<? /****************************************************************************** Company : gwd-clan.de | web-speicher.de Urls : http://www.gwd-clan.de | http://www.web-speicher.de Author : info@gwd-clan.de (MATRIX | Stephan Geißler) Create date : 2001-10-23 Last change : 2001-10-25 Licence : licence.txt
--> FREE FOR NON-COMMERCIAL USE <-- ******************************************************************************/
require("./server/config/server_conf.php");
?>
<HTML> <HEAD> <link href="style.css" type="text/css" rel="stylesheet"> <TITLE><? echo $title ?></TITLE> </HEAD> <BODY bgcolor="<? echo $bgcolor ?>"> <DIV ALIGN="CENTER"> <table border="0" align="center"> <tr> <td> <table cellspacing=1 cellpadding=2 width="100%" bgcolor="<? echo $border ?>" border=0 align="center"> <tbody> <tr bgcolor="<? echo $tab1 ?>"> <td class=textwhite><font face="Arial, Helvetica, sans-serif" size="2"><b><font color="<? echo $font1 ?>">-<? echo $serv_name ?>-</font></b></font></td> </tr> <tr bgcolor="<? echo $tab2 ?>"> <td class=textbl bgcolor="<? echo $tab2 ?>"> <div align="center"> <? switch($page){ default: include("./server/mainstatus.php"); break; case "players": include("./server/players.php"); break; case "rules": include("./server/rules.php"); break; case "csstatus": include("./server/csstatus.php"); break;
} ?> </div> </td> </tr> </tbody> </table> </td> </tr> <tr> <td> <div align="center"><a href="<? echo $PHP_SELF ?>?page=csstatus">More</a> | <a href="<? echo $PHP_SELF ?>">Start</a> | <a href="<? echo $PHP_SELF ?>?page=players">Players</a> | <a href="<? echo $PHP_SELF ?>?page=rules">Rules</a></div> </td> </tr> </table> <br> <a href="http://www.gwd-clan.de" target="_blank"><img src="small.gif" width="120" height="50" border="0"></a> </DIV> </BODY> </HTML>
das script liegt im verzeichnis /server