Me tira estos errores
Warning: Cannot modify header information - headers already sent by (output started at W:\www\Login\Conex.php:20) in W:\www\Login\Login.php on line 20
Warning: Cannot modify header information - headers already sent by (output started at W:\www\Login\Conex.php:20) in W:\www\Login\Login.php on line 21
Código:
Gracias<?php include("Conex.php"); $link=Conectarse(); $resultado=""; /*function quitar($mensaje) { $mensaje = str_replace("<","<",$mensaje); $mensaje = str_replace(">",">",$mensaje); $mensaje = str_replace("\'","'",$mensaje); $mensaje = str_replace('\"',""",$mensaje); $mensaje = str_replace("\\\\","\",$mensaje); return $mensaje; }*/ $resul=mysql_db_query("prueba","SELECT * FROM login WHERE user='$user'"); $res= mysql_fetch_array($resul); if($res['pass'] == $pass) { setcookie("usercookie","mmmmm",time()+7776000); setcookie("passcookie",$pass,time()+7776000); $u=$HTTP_COOKIE_VARS["usercookie"]; print '&resultado='.$u; } else { print '&resultado=Login erroneo; } mysql_free_result($resul); mysql_close($link); ?>
SAludos
Mariano