tengo un php q recibe datos de un html y necesito q segun una consulta m direccione a la siguien pagina pero m sale este warning:Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\dif\identificaa.php:4) in C:\xampp\htdocs\dif\identificaa.php on line 26
Este es el codigo php q tengo:
Código PHP:
<?php
$usuario=$_POST['usuario'];
$area=$_POST['area'];
$pass=$_POST['pass'];
mysql_connect("localhost","root","yonose14") or die("no se pudo realizar la conexion");
mysql_select_db("dif") or die ("no se encuantra la bd");
$resp = mysql_query("SELECT*FROM empleado WHERE usuario='".$_POST['usuario']."' AND area='".$_POST['area']."'");
$sql = mysql_fetch_array($resp);
$cons = mysql_query("SELECT*FROM ap WHERE usuario='".$_POST['usuario']."' AND area='".$_POST['area']."'");
$sqll = mysql_fetch_array($cons);
if($_POST['pass'] != $sql['password']) {
header ("location: error1.htm");
} else if($_POST['pass'] = $sqll['password']){
header ("location: informatica.html");
} else {
header ("location: pruebaaa.php");
}
?>
he leido q solo t manda ese error cuando muestras algo en pantalla y utilizas el header pero yo no estoy haciendo eso o si???
Ayuda PLASE!!!!