Page Protector 1.0
Script composto da 5 pagine ..
Creato da Guido8975...
Autenticazione utente pagina protetta!
Pagina 1 login.htm
<html>
<head>
<title>Pagina di Login</title>
</head>
<body>
<form method=POST action=login.php>
<input type=text name=user size=20>
<input type=password name=pass size=20>
<input type=submit value=Login>
<input type=reset value=Reset></form>
</body>
</html>Pagina 2 login.php
<?
session_start();
include 'conf.php';
$user= $_POST['user'];
$pass= $_POST['pass'];
if((!$user) || (!$pass)){
echo "Inserire tutte le informazioni!";
header("Location: login.htm");
}else{
if($user==$usern && $pass==$passw){
$_SESSION['username'] = $usern;
header("Location: protetta.php");
}else{
header("Location: login.htm");
}
}
?>Pagina 3 conf.php
<?
$usern= 'pippo';// username
$passw= 'pipo';// password
?>Pagina 4 logout.php
<?php
include 'conf.php';
session_start();
if ($_SESSION['username']==$usern) {
session_unset();
session_destroy();
echo "Hai effettuato il log out!!";
} ?>Lo puoi provare http://guido8975.altervista.org/login/login.htmPagina 5 protetta.php
<?php
include 'conf.php';
session_start();
if ($_SESSION['username']==$usern) { ?>
Contenuto pagina html<br>
<a href=logout.php>Log OUt</a>
<? } ?>
Oppure scaricare http://www.guido8975.it sezione script!
Dato che nn sn un esperto in php ci potrebbero essere orrori!!!
Bisogna solo configurare username e password!!Nel file conf.php
CIAO!!