Login-Modul Problem
Verfasst: Di 5. Apr 2005, 00:34
Hallo,
ich habe folgendes Problem: Das Login Modul sieht so aus:
Sobald man sich eingeloggt hat, soll man z.B auf die Hauptseite kommen also:
Ich werde aber immer auf die seite:
geleitet. Auch wenn ich den action teil ändere oder sogar lösche, funktioniert das Modul weiter und geht auf die Seite drauf. Wie kann ich das so ändern, das es jetzt auf meine Seite geht wo ich es haben möchte ? Kann mir jemand helfen ? Hoffe das es jemand verstanden hat 
ich habe folgendes Problem: Das Login Modul sieht so aus:
Code: Alles auswählen
<table width="165" border="0" cellspacing="0" cellpadding="0">
<tr><td height="30" colspan="2" ></td></tr>
<tr><td height="21" width="22" style="border: 0px; border-top:1px; border-bottom:1px; border-color: #F7C473; border-style: solid; background-color: #FCF2D5"><img src="images/wuerfel.gif" width="22" height="21" border="0"></td>
<td width="143" style="border: 1px; border-left:0px; border-color: #F7C473; border-style: dashed; background-color: #FCF2D5; padding-left:10px" class="punkte">Login</td></tr>
<tr><td colspan="2" class="text" height="22" style="border: 1px; border-top:0px; border-color: #F7C473; border-style: dashed; background-color: #FCF2D5; padding-left:10px">
<?php
if ($auth->auth["uid"] == "nobody")
{
?>
<form method="post" action="front_content.php?idcatart=<?php echo $idcatart; ?>">
<table border="0">
<tr><td>Benutzername</td></tr>
<tr><td><input type="input" name="username" value=""></td></tr>
<tr><td>Passwort</td></tr>
<tr><td><input type="password" name="password" value=""></td></tr>
</table>
<input type="submit" name="login" value="Anmelden">
</form><br>
<?php
} else {
?>
Angemeldet als: <br> <?php echo $auth->auth["uname"]; ?>
<br><br>
<form method="post" action="front_content.php?idcatart=<?php echo $idcatart; ?>">
<input type="submit" name="logout" value="Abmelden">
</form><br>
<?php
}
?>
</td></tr></table>
Code: Alles auswählen
http://localhost/contenido-4.4.5/cms/front_content.php?idcat=1
Code: Alles auswählen
http://localhost/contenido-4.4.5/cms/front_content.php?idcat=1&idart=107
