Hola, cuando ejecuto este script:
Código PHP:
Ver original if ($v1 = "" || $v2 = ""){
header ("Location index.php?error=x003"); }else{
$result = mysql_query('SELECT usuario, contraseña, id FROM usuarios WHERE usuario=\''.$usuario.'\''); if($row["contraseña"] == $password){
$_SESSION["usuario"] = $row['usuario'];
$_SESSION["activo"] = "si";
$_SESSION["id"] = $row['id'];
}
else
{
header ("Location index.php?error=x004"); }
}else{
header ("Location index.php?error=x005"); }
}
me da este error:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/a5158418/public_html/login.php on line 34
La linea 34 es:
if($row = mysql_fetch_array($result)){
¿Qué hice mal?