Originalmente inviato da
karl94
Riporta il codice che stai usando.
Codice PHP:
<?php
session_start();
require("connection");
$sSql = "Select id, ac_userid, ac_password from accsito where ac_userid = '".$Userid."'";
//print ($sSql);
$result=mysql_query($sSql);
$rows=mysql_num_rows($result);
if($rows>0) //PERCHE' DA POCHI GIORNI MI ENTRA NELL'ELSE SE L'UTENTE ESISTE??? SE ESEGUO LA QUERY DA PHPMYADMIN FUNZIONA
{
..
..
..
}else
{
$HTTP_SESSION_VARS['Errore'] = "Utente non definito";
mysql_close($connection);
header ("Location: http://".$HTTP_SERVER_VARS['HTTP_HOST']
."".dirname($HTTP_SERVER_VARS['PHP_SELF'])
."index.php='Utente non definito'");
exit;
}
?>
<html>
<head>
<title>Documento senza titolo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
</body>
</html>