tipo:
codice:
<?php
session_start();

if (($name == "") AND (($password == "")){
echo "immetere nome utente e password";
}
if (($name == $vadmin) AND ($password == $vpassword)){
header(location:"pagina.php");
}
else {
echo "nome utente e/o password sbagliati";
}
?>