quasto è il codice:
Codice PHP:
include("include/config.inc.php");
if (isset($_POST['utente']))
{
$utente = $_POST['utente'];
$pass = md5($_POST['pass']);
$verif_query=sprintf("SELECT * FROM $_ute WHERE ut_utente='$utente' AND ut_pass='$pass'");
$verif = mysql_query($verif_query, $db) or die(mysql_error());
$rigo_verif = mysql_fetch_assoc($verif);
$utente = mysql_num_rows($verif);
if ($rigo_verif['ut_attivo']=='NO')
{
header("Location:index.php?errore=intru");
}
else
if ($utente)
{
session_start();
session_register("autenticazione");
$_SESSION['Accesso'] = $rigo_verif['ut_accesso'];
$_SESSION['nome'] = $rigo_verif['ut_nome'];
$_SESSION['cognome'] = $rigo_verif['ut_cognome'];
$_SESSION['utente'] = $rigo_verif['ut_utente'];
$_SESSION['pass'] = $rigo_verif['ut_pass'];
header("Location:ingresso.php");
}
else
{
header("Location:index.php?errore=utente");
}
}