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'");
$sentencia= mysql_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>
Código PHP:
<?php
include ("Conexion.php");
session_start();{
$_SESSION ['ide'] =$txtid;
}
?>
Agradeceria sus ayuda.
Saludos y Gracias.