Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/03/2013, 10:34
AxacrosS
 
Fecha de Ingreso: marzo-2013
Mensajes: 38
Antigüedad: 11 años, 9 meses
Puntos: 0
Pregunta Estoy loco ! error en Session_start !!! Urgent

Lamento duplicar el tema pero necesito que me ayuden urgentemente... necesito pasar el dato del loggin a otros php !! y me dar un error de variable undefined, estos son mis codigos ....

Código PHP:
<?php
include("Conexion.php");

if (isset(
$_POST["btnentrar"])){
    
$txtid= isset( $_POST["ide"]) ? $_POST["ide"] : "";
$txtpwd= isset( $_POST["pwd"]) ? $_POST["pwd"] : "";
$consulta= ("select * from usuario where id = '$txtid' and contra='$txtpwd'");
$sentenciamysql_query($consulta,$con);
while (
$rs=mysql_fetch_array($sentencia)){
$nombre $rs["usunom"]; 
$cargoo $rs["cargo"];
}

if (isset(
$nombre)){
session_start();
$_SESSION['login']=$txtid;
$_SESSION['nombre']=$nombre;
define ("xd","BODEGA");
if (
$cargoo == xd){
header ("location: MenuUsuario.php?");

}
}
else{
echo(
"Usuario Incorrecto");
echo 
"<a href= 'Acceso.php'></a>";

    }
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body bgcolor= "cadetblue">
<form name="Inicio" method="Post" action="">
<center>
  <table width="242" border="1">
    <tr>
      <td colspan="2"><center>
          INICIO SESIÓN
        </center></td>
    </tr>
    <tr>
      <td width="82">ID</td>
      <td width="144">
          <label for="textfield"></label>
          <input type="text" name="ide" id="ide" />
        </td>
    </tr>
    <tr>
      <td>PASSWORD</td>
      <td>
          <label for="textfield2"></label>
          <input type="password" name="pwd" id="pwd" />
      </td>
    </tr>
    
      <td colspan="2">
          <center>
            <input type="submit" name="btnentrar" id="btnentrar" value="Ingresar" />
          </center>
      </td>
  </table>
</center>
</form>
</body>
</html>
Este el un php al que quiero mostrar el dato !!!
Código PHP:
<?php
include ("Conexion.php");
session_start();{
$_SESSION ['ide'] =$txtid;
}
?>
No puedo comprender porque me aparece eso ... habra que instalar algo ??? para usar estos codigos o configurar algo ...

Agradeceria sus ayuda.

Saludos y Gracias.