Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/03/2013, 09:35
animalrock23
 
Fecha de Ingreso: marzo-2013
Mensajes: 12
Antigüedad: 11 años, 1 mes
Puntos: 0
error: mysql_fetch_array() expects parameter 1 to be resource, boolean given in ...

hola, me sale el siguiente error: Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in /home/lmztkkum/public_html/user/comprobar2.php on line 6
error

Código:
<?php
    session_start();
    include('acceso_db.php');
    if(isset($_POST['enviar'])) {
            $sql = mysql_query("SELECT usuario_id, usuario_nombre, usuario_clave, usuario_nivel FROM usuarios WHERE usuario_nombre='".$usuario_nombre."' AND usuario_clave='".$usuario_clave."'");
            if($row = mysql_fetch_array($sql)) {
                $_SESSION['usuario_id'] = $row['usuario_id']; 
                $_SESSION['usuario_nombre'] = $row["usuario_nombre"]; 
		$_SESSION['usuario_nivel'] = $row["usuario_nivel"];
                header("Location: perfil.php");
            }else {
?>
                error
<?php
            }
        
    }else {
        header("Location: perfil.php");
    }
?>
no se donde está el error :(