Necesito su ayuda con un codigo ya que deseo implementar un inicio de sesion en mi pagina web, podrian facilitarme un codigo php que me permita realizar esa operacion?
1-tengo mi base de dato en phpMyAdmin
2-La tabla usuario y los usuarios ya registrados respectivamente
3-el html listo para el inicio de sesion
Cita:
Ahora solo me falta el codigo php para validar el usuario que ingrese en mi html con la respectiva tabla y atributos que poseo en phpMyAdmin. He conseguido algunos codigos pero los veo con defectos y de verdad que no soy muy experto con php.<html>
<head>
<script language="javascript" type="Text/javascript">
function valida(sesion){
if(sesion.ficha.value == ''){
alert('Por Favor ingrese un numero de ficha valido');
sesion.ficha.focus();
return false;
}
if(sesion.contraseña.value == ''){
alert('Ingrese una contraseña valida');
sesion.contraseña.focus();
return false;
}
return true;
}
</script>
</head>
<body bgcolor='yellow'>
<img src='img/fotohome-3.jpg' align='center'>
<form name='sesion' action="index.php" method="post" enctype="text/plain" onsubmit="return valida(this)">
<table bgcolor='yellow' border='0' align='center' colspan='2' >
<tr colspan='2'>
<td width='400' colspan='2'>
<h3 align='center'>Inicio de Sesion</h3>
</td>
</tr>
<tr>
<td width='50%'>
<p align='center'> <font color='00A3C2'>Ficha</p>
</td>
<td width='50%'>
<input type="int" name='numficha'>
</td>
</tr>
<tr>
<td width='50%'>
<p align='center'> <font color='00A3C2'>Contraseña</p>
</td>
<td width='50%'>
<input type="password" name='contraseña'>
</td>
</tr>
<tr>
<td colspan='2'>
<p align='center'>
<input type="submit" value="Entrar">
<input type="reset" value="Borrar">
</p>
</td>
</tr>
</table>
</form>
</body>
</html>
<head>
<script language="javascript" type="Text/javascript">
function valida(sesion){
if(sesion.ficha.value == ''){
alert('Por Favor ingrese un numero de ficha valido');
sesion.ficha.focus();
return false;
}
if(sesion.contraseña.value == ''){
alert('Ingrese una contraseña valida');
sesion.contraseña.focus();
return false;
}
return true;
}
</script>
</head>
<body bgcolor='yellow'>
<img src='img/fotohome-3.jpg' align='center'>
<form name='sesion' action="index.php" method="post" enctype="text/plain" onsubmit="return valida(this)">
<table bgcolor='yellow' border='0' align='center' colspan='2' >
<tr colspan='2'>
<td width='400' colspan='2'>
<h3 align='center'>Inicio de Sesion</h3>
</td>
</tr>
<tr>
<td width='50%'>
<p align='center'> <font color='00A3C2'>Ficha</p>
</td>
<td width='50%'>
<input type="int" name='numficha'>
</td>
</tr>
<tr>
<td width='50%'>
<p align='center'> <font color='00A3C2'>Contraseña</p>
</td>
<td width='50%'>
<input type="password" name='contraseña'>
</td>
</tr>
<tr>
<td colspan='2'>
<p align='center'>
<input type="submit" value="Entrar">
<input type="reset" value="Borrar">
</p>
</td>
</tr>
</table>
</form>
</body>
</html>
estare muy agradecido de antemano
Saludo!!