PHP
<html>
<head>
<title>Admin</title>
</head>
<body>
<?PHP
$ip=$_SERVER['REMOTE_ADDR'];
if $ip == 00.000.00.00 || $ip == 11.111.11.11 {
//hier je admin panel
} else {
echo "Jij hebt geen rechten om op deze pagina te zijn";
}
?>
<form method="post">
<table>
<tr><td>Login: <td><input type="text" name="login"></td></tr>
<tr><td>Pass: <td><input type="pass" name="pass"></td></tr>
<tr><td><td><input type="submit" name="submit"></td></tr>
<table>
</form>
</body>
</html>
Toon Meer