Und wieder ne dringende Frage

KILLERAMEISE

Mitglied
Also hier bin ich wieder! Also fange ich mal an! ich möchte 2 sachen includen (auf meiner seite). Das eine was includet wird soll immer da sein da es ein Vote ist! Das andere ist in der Mitte (also News) da kommt alles rein! also wenn man auf einen link klickt soll da alles drinne sein was in der datei ist. wie geht das das ich beide s in meine index.php reinmachen kann? das habe ich bis jetzt ( den befehl damit die links dort angezeigt werden!
PHP:
<?php
global $site, $incpath;
if ($site == "")
{
?>


<h1 align="center"><?php
    chdir("news");
    include("index.php");
?>


<?php
}
else
{
switch ($site)
{
//Home
case "forum": $incpath = "links.php"; break;
case "toplist": $incpath = "links.php"; break;
case "link": chdir("linkliste"); $incpath = "list.php"; break;
case "blacklist": $incpath = "links.php"; break;
case "gbuch": $include= "gbevil.php"; break;
case "chat": $incpath = "chat/index.php"; break;
case "kontakt": $incpath = "links.php"; break;
case "linkus": $incpath = "linkus.php"; break;
case "copyright": $incpath = "copyright.php"; break;
case "ns": $incpath = "/news/index.php?action"; break;

//Infos
case "sagaguide": $incpath = "sagaguide.php"; break;
case "ssjstufen": $incpath = "ssjstufen.php"; break;
case "episoden": $incpath = "episodenguide.php"; break;
case "kampfkraft": $incpath = "kampfkraft.php"; break;
case "stammbaum": $incpath = "stammbaum.php"; break;
case "gguide": $incpath = "gguide.php"; break;
case "mguide": $incpath = "mguide.php"; break;
case "chars": $incpath = "chars.php"; break;
case "cspiele": $incpath = "cspiele.php"; break;
case "dl": chdir("powerdownload222"); $incpath = "downloads.php"; break;
}
include ($incpath);
}
?>
 
Zuletzt bearbeitet:
aber wird er den dann nicht später ein problem haben wo er die sachen der links hin tun soll? in das eine oder ind das andere?
Edit:

Was bedeutet das " include '$seite.php'; //oder halt den ganzen switch kram " ? Ein bekannter hat mir das gemacht nur er zog weg

thx schon mal
 
Zuletzt bearbeitet:
wie später ein problem?
du musst den vote halt da includen wo er auch hinsoll ^^

aber guck dir doch mal diese zeile an,das ist doch wirklich schwachsinnn:
case "mguide": $incpath = "mguide.php"; break;

da kannst du doch gleich die php datei anhand der variable $site includen und brauchst nicht erst abzufragen welchen inhalt sie hat!
 
Zurück