tak na szybko
zabezpieczenie na haslo:
index.php
Kod:
<html>
<head>
<title>tytul</title>
<meta http-equiv="Content-type" content="text/html; charset=iso-8859-2">
</head>
<body bgcolor="white">
<center>
<?php
$haslo = $_POST['haslo'];
if ($haslo == "haslo") {
Header("Location: prawdziwastrona.html");
} else {
print("<form action=\"index.php\" method=\"post\">
<input type=\"password\" name=\"haslo\" size=\"10\" maxlength=\"10\">
<input type=\"submit\" value=\"enter\">
</form></center></body></html>\n");
}
?>
zabezpieczenie na adresy ip osob ktore moga ogladac stronke:
index.php
Kod:
<?php
$ip = getenv("REMOTE_ADDR");
if ($ip != "ip kolegi 1" && $ip != "ip kolegi 2" && $ip != "ip kolegi 3" && $ip != "ip kolegi 4") {
die("<html>
<head>
<title>tytul</title>
</head>
<body>
<h1>nie jestes moim kolega :D</h1>
</body>
</html>");
}
?>
<html>
<head>
<title>tutaj jest prawdziwa stronka</title>
</head>
<body>
<h1>jestes moim kolega :P</h1>
</body>
</html>