este es mi codigo php:
Código PHP:
<?php
@session_start();
include("includes/conexion.php");
$activo = 1;
$sql_login = "SELECT * FROM miusb_usuarios where username = '".$_POST['usuario']."'
and pass = '".$_POST['clave']."' and activo = '".$activo."'";
$rpta_login = mysql_query($sql_login) or die(mysql_error());
if($activo==1){
if(mysql_num_rows($rpta_login)>0){
$_SESSION['var_usuario'] = $_POST["usuario"];
$_SESSION['var_pass'] = $_POST["clave"];
header("Location:index.php");
}else{
header("Location:index.php?error=1");
}
}elseif($activo==0){
header("Location:index.php?error=2");
}
?>