|
[ Partner ]
|
|
|
|
 |
|
[ Autoren gesucht! ]
|
PHP-Homepage.de sucht laufend Autoren für News und Artikel
Interesse?
|
|
 |
|
[Start] [Code eintragen] [Suche] [Neue
Einträge] [Registrierung]
| .htaccess ohne PopUp | <?
if ($service == "einloggen") {
echo "<html>
<head>
<title></title>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">
<meta http-equiv=\"refresh\" content=\"0;URL=http://$username:$passwort@www.Deine_Url.de/secure/\">
</head>
</body>
</html>";
exit;
}
?>
<html>
<head>
<title>Members</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<form method="post" action="<? echo $PHP_SELF;?>">
<input type="hidden" name="service" value="einloggen">
<table width="47%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#000000" bgcolor="#CCCCCC">
<tr>
<td><b>Username:</b></td>
<td>
<input type="text" name="username" size="30">
</td>
</tr>
<tr>
<td><b>Passwort:</b></td>
<td>
<input type="password" name="passwort" size="30">
</td>
</tr>
</table>
<p align="center">
<input type="submit" value="Abschicken">
<input type="reset" value="Zurücksetzen">
</p>
</form>
<p> </p>
</body>
</html> |
|