timmiejboi
Gebruiker
- Lid geworden
- 17 feb 2008
- Berichten
- 32
je kan niet inloggen er komt elke keer te staan: u bent nog niet ingelogd
ziet iemand de fout
ziet iemand de fout
Code:
<?php
include("include/functies.inc.php");
include("include/config.php");
include("include/style.inc.php");
?>
<html>
<head>
<title>Login</title>
</head>
<body>
<?php
include("include/navigatie.php");
?>
<table width="400" align="center">
<tr>
<th valign=top>U moet ingelogd zijn om deze pagina te bekijken<br><br></th>
</tr>
<tr><td>
<?
//if no cookie is set then display the form
if(!isset($_COOKIE["this_cookie"])){
echo '<div align="center"><form action="validate.php" method="post">';
echo 'Gebruikersnaam : <input type="text" name="username"><br><br>';
echo 'Wachtwoord : <input type="password" name="password"><br><br>';
echo '<input type="submit" value="Login"></form></div>';
}else{
echo "U bent al ingelogd !!! <a href=\"admin.php\">Ga verder ...</a>";
}
?>
</td>
</tr>
</table>
</body>
</html>