Estimados todos tengo el siguiente problema:
esto haciendo una validacion con php y no me resulta bien si les dejo el code me podrian ayudar?,
bueno aqui el index
<?
session_start();
$_SESSION["misesion"] = "";
?>
<html>
<head>
</head>
<body>
<form action="Validar.php" method="post" name="uservalida" id="uservalida">
<div align="center">
<table width="259" height="125" border="0" cellpadding="0" cellspacing="0" bgcolor="#A6C4E0">
<tr bgcolor="#A6C4E0">
<th width="112" height="19" align="center" bgcolor="#A6C4E0" >
<div align="center" class="Estilo14">Autentificación </div></th>
</tr>
<tr bgcolor="#CFDDEB">
<td valign="top" bordercolor="#330099" bgcolor="#CFDDEB" class="Estilo1"><p align="center"><span class="Estilo2 Estilo13 style23">Usuario:</span>
<input name="usuario" type="text" size="15" maxlength="15" />
</p>
<p align="center"><span class="style23 Estilo2 Estilo13"><span class="Estilo13">Clave:</span> </span>
<input name="clave" type="password" id="clave" size="15" maxlength="15" />
</p>
<p align="center"><strong>
<input name="submit" type="submit" value="Entrar" />
</strong><a href="Cambiacluser.php" class="Estilo4">Cambiar clave</a> <strong class="Estilo4"><a href="Inscripciones.php" class="Estilo5">Registrarse</a></strong> </p></td>
</tr>
</table>
</div>
</form>
</body>
</html>
aqui donde valido y supuestamente deberia tomarse el valor
<title>Validacion...</title>
<?php
$usuario=$_POST['usuario'];
$clave=$_POST['clave'];
$conn = mysql_connect("localhost", "root", "");
mysql_select_db("internet_db",$conn);
$ssql = "SELECT * FROM usuarios WHERE nombre='$usuario' and passw='$clave'";
$result = mysql_query($ssql,$conn);
if (mysql_num_rows($result)!=0)
{
$autentificado = "SI";
while($row = mysql_fetch_array($result))
{
$rut = $row['rut'];
if($rut==NULL)
{
echo "<script> top.location.href='inscripcion.php?user=$usuario&pass=$clave'</script>";
}
else
{
echo "<script> top.location.href='/portal/index.php'</script>";
session_start();
$_SESSION["misesion"] = $autentificado;
}
}
}
else
{
$autentificado = "NO";
echo "<script> top.location.href='index.php'</script>";
}
mysql_free_result($rs);
mysql_close($conn);
?>
y en este otro donde se supone debe validar si esta bien o no?
<?
session_start();
if (!isset($_SESSION['misesion']))
{
$miNuevaVariable = $_SESSION['misesion'];
}
else
{
echo "<script> top.location.href='index.php'</script>";
}
?>
<?php
header("Pragma: no-cache");
define("CHEMIN", "");
include("inc/includes.inc");
$topmess = "";
include("inc/hpage.inc");
if (!empty($editobox[0])) {
include(INCREP.$editobox[0].INCEXT);
}
if (!empty($editobox[1])) {
include(INCREP.$editobox[1].INCEXT);
}
if (!empty($editobox[2])) {
include(INCREP.$editobox[2].INCEXT);
}
if (!empty($editobox[3])) {
include(INCREP.$editobox[3].INCEXT);
}
include("inc/bpage.inc");
?>
si tengo muchos errores me los podrian indicar?,
el tema es el siguiente, en el primer index envio los datos a validar y luego si esta ok los mando al otro index, el problema, es que no me carga la pagina, queda como si estuviera recargandose todo el tiempo, gracias por darse el tiempo de leer este codigo,
saludos a todos,
Neo.