So ich habe es nun mit dem switch hinbekommen, aber ein prob habe ich da trozdem noch. Er gibt es nicht richtig aus und zwar setzt er es oben hin aber soll es in die mitte anzeigen.
So sieht es atm aus.
Test Seite
index.php
index.tpl
da wo dd steht soll der inhalt von der switch anwesiung rein. Was müss ich nun ändern?
So sieht es atm aus.
Test Seite
index.php
PHP-Code:
switch($_GET['modul'])
{
default : li();break;
case news :
switch($_GET['sub_modul'])
{
default : li();break;
case news : news();break;
};break;
}
function news()
{
echo'news';
}
$smarty->display('index.tpl');
PHP-Code:
<table border="0" cellpadding="0" cellspacing="0" width="958" height="567">
<tr>
<td width="132" rowspan="4" height="567" valign="top">
<A HREF='index.php?modul=news' >Home</a><br>
<A HREF='index.php?modul=news&sub_modul=news' >Links</a><br>
</td>
<td width="693" height="38" > </td>
<td width="133" rowspan="4" height="567" valign="top"></td>
</tr>
<tr>
<td width="693" height="398" align="center" valign="top">dd</td>
</tr>
</table>
Kommentar