Hola :
Mi problema es el siguiente, la pagina que contiene las textarrea para iniciar sesión se llama ingresa.php. Cuando trabajo en el localhost (xampp) me envía a ingreso.php, en donde quiero que vaya, hasta hay todo bien.
Pero al subir al hosting no me envía a ningún lado, se inicia la sesión pero se mantiene en ingresa.php.
Me podrían orientar ó es un problema del localhost??
Este es el codigo que ocupo
Código PHP:
Ver original<?
include("configuration.php");
include("recursos.php");
$message = "";
$act = $_POST['act'];
if($act == 'login') {
$email = $_POST['email'];
$password = $_POST['passwd'];
$oneCustomer = new Cliente();
$txterror = $oneCustomer->VerificarDatos($email, $password);
if($txterror != 'NOOK') {
if (isset($_SESSION["cart"])){ header("Location: ingreso.php"); }
}else{
$message = "Datos incorrectos";
}
}
?>
Código HTML:
Ver original<form name="form1" id="form1" method="post"> <input type="hidden" id="act" name="act" />
<table width="98%" border="0" cellspacing="2" cellpadding="2"> <td colspan="2"> </td> <td><input name="passwd" type="password" id="passwd" value="" /> <span class="required">*
</span></td> <td style="color:#F00"><? echo $message ?></td> <td align="left"><input type="button" onclick="javascript:validate()" name="button" id="button" value="Entrar" /><span id="message_submit" style="color:#FF0000; border-left:2px"></span></td>
Cabe mencionar que subo la misma página, la que trabajo en el localhost y ya la he subido varias veces.
gracias