Buona sera a tutti,
avrei bisogno di un aiuto con un login, allora registro un utente e poi accedo con il submit e mi da questo errore:
Notice: Use of undefined constant utente - assumed 'utente' in C:\xampp\phpMyAdmin\blackskull\login.php on line 7
Notice: Undefined index: utente in C:\xampp\phpMyAdmin\blackskull\login.php on line 7
Notice: Use of undefined constant psw - assumed 'psw' in C:\xampp\phpMyAdmin\blackskull\login.php on line 8
Notice: Undefined index: psw in C:\xampp\phpMyAdmin\blackskull\login.php on line 8
Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\xampp\phpMyAdmin\blackskull\login.php on line 15
Errore: utente o password non identificato
il codice che interessa la pagina login.php è tutto questo:
<?php
$con=mysql_connect("*****","****","***");
if(!$con){
die('Impossibile connettersi a: ' . mysql_error());
}
mysql_select_db("blackskull", $con);
$utente=$_POST[utente];
$psw=$_POST[psw];
$utente=stripslashes($utente);
$psw=stripslashes($psw);
$utente=mysql_real_escape_string($utente);
$psw=mysql_real_escape_string($psw);
$sql="SELECT * FROM login WHERE utente as '$utente' and psw as '$psw'";
$result=mysql_query($sql);
$count=mysql_num_rows($result);
if($count==1){
session_register("utente");
session_register("psw");
header("Location:riservata.php");
}
else{
echo "Errore: utente o password non identificato";
}
?>
mi potreste aiutare? grazie mille in anticipo