ich schreibe gerade eine Seite etwas um! Jetzt spiele ich etwas mit PHP was ich mir selber beibringe. Leider komm ich ab jetzt nicht mehr weiter. Ich habe in meinem PHP Code die Site Login eingefügt, aber wie öffne ich jetzt die Hauptseite wie in der Demo? Das mir die Seite neben meinem Navi Leiste angezeigt wird?
Siehe Code mit variablen!
Gruß
Tim
index.php
Code: Alles auswählen
<?php
include_once($_SERVER['DOCUMENT_ROOT']. "adm/adm_program/system/common.php");
$mid = $_GET['mid'];
if(!isset($_GET['mid'])){
$mid=1;
$startseite_laden = true;
}
$smid = $_GET['smid'];
if(!isset($_GET['smid'])) $smid=1;
$umid = $_GET['umid'];
if(!isset($_GET['umid'])) $umid=1;
$amid = $_GET['amid'];
if(!isset($_GET['amid'])) $amid=1;
?>
<title>xxxx</title>
<style type="text/css">
<!--
.Stil1 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
}
-->
</style>
<table width="900" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="157" colspan="3" valign="bottom" background="images/header.jpg"><table width="899" height="33" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="160" height="33"> </td>
<td width="100"><span class="Stil1">Home</span></td>
<td width="100"><span class="Stil1">News</span></td>
<td width="100"><span class="Stil1">Termine</span></td>
<td width="100"><span class="Stil1">Presse</span></td>
<td width="100"><span class="Stil1">Konakt</span></td>
<td width="119"><span class="Stil1">Gaestebuch</span></td>
<td width="120"><span class="Stil1">Impressum</span></td>
</tr>
</table></td>
</tr>
<tr>
<td width="174" valign="top"><table width="159" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="160" height="35" background="images/seite.jpg"><div align="right"><span class="Stil1">Aktiv</span></div></td>
</tr>
<tr>
<td height="35" background="images/seite.jpg"><div align="right"><span class="Stil1">Vorstandschaft</span></div></td>
</tr>
<tr>
<td height="35" background="images/seite.jpg"><div align="right"><span class="Stil1">Jugend</span></div></td>
</tr>
<tr>
<td height="35" background="images/seite.jpg"><div align="right"><span class="Stil1">Ausruestung</span></div></td>
</tr>
<tr>
<td height="35" background="images/seite.jpg"><div align="right"><span class="Stil1">Fotoalbum</span></div></td>
</tr>
<tr>
<td height="35" background="images/seite.jpg"><div align="right"><span class="Stil1">Mitglied werden</span></div></td>
</tr>
<tr>
<td height="35" background="images/seite.jpg"><div align="right"><span class="Stil1">Links</span></div></td>
</tr>
<tr>
<td height="35" background="images/seite.jpg"><div align="right">
<?php
include($_SERVER['DOCUMENT_ROOT']. "/adm/adm_plugins/sidebar_login/sidebar_login.php");
?>
</div></td>
</tr>
</table> <img src="images/taucher.jpg" alt="Taucher" width="160" height="262" /></td>
<td width="726" valign="top"><div align="center" id="hauptseite">
<?php
include("include/variablen.php");
?>
</div></td>
</tr>
</table>
Code: Alles auswählen
<?php
/*---------------------------------------------------------------------------*/
# Start:
if($mid==1 && $smid==1){
include("startseite/startseite.php");
}elseif ($mid==1 && $smid==1){
include("");
}elseif ($mid==1 && $smid==2){
include("");
}elseif ($mid==1 && $smid==3){
include("");
}elseif ($mid==1 && $smid==4){
include("");
}
?>