Hallo...
Ich habe mal dieses Script gemacht:
Das funktioniert zum Glück auch, nun müsste ich mich aber bei jedem neu aufruf der Seite das Passwort u.s.w angeben, wie kann ich es aber machen, dass ich mich für eine Zeit nur 1 mal einloggen muss?(ohne Cookies)
Vielen Dank für eure Hilfe!
Gruss adihas
Ich habe mal dieses Script gemacht:
PHP-Code:
<?php
require("logindaten.php");
if((isset($action)) && ($loginname == $admin) && ($loginpasswort == $passwort))
{
echo "es geht";
}
else
{
?>
<form method="POST" action="login.php">
<div align="center">
<center>
<table border="0" cellspacing="0" width="445">
<tr>
<td width="441" colspan="2"><font face="Arial" size="3"><u><b>Admin-Login</b></u></font></td>
</tr>
<tr>
<td width="82"><font face="Arial" size="2">Loginname:</font></td>
<td width="359"><input type="text" name="loginname" size="20"></td>
</tr>
<tr>
<td width="82"><font face="Arial" size="2">Passwort:</font></td>
<td width="359"><input type="password" name="loginpasswort" size="20"><input type="hidden" name="action" size="20" value="ok"></td>
</tr>
</table>
</center>
</div>
<p align="center"><input type="submit" value="login"><input type="reset" value="löschen"></p>
</form>
<?
}
?>
Vielen Dank für eure Hilfe!
Gruss adihas
Kommentar