Código PHP:
<head>
<title>.::Registro de Personal::.</title>
</head>
<!--#include file="conecta.asp"-->
<body>
<script language="javascript">
function valida()
{
if(document.registro.nombre.value ==''){
alert("Por favor introduzca el nombre del empleado.");
document.registro.nombre.focus();
return; }
if(document.registro.apellidos.value ==''){
alert("Por favor introduzca los apellidos del empleado.");
document.registro.empleado.focus();
return; }
if(document.registro.usuario.value == ''){
alert("Por favor introduzca un nombre de usuario.");
document.registro.correo.focus();
return; }
if(document.registro.correo.value == ''){
alert("Por favor introduzca el email de la persona a registrar.");
document.registro.correo.focus();
return; }
if ((document.registro.correo.value.indexOf ('@', 0) == -1)||(document.registro.correo.value.length < 5)||(document.registro. correo.value.indexOf ('.', 6) == -1)){
alert("Por favor, introduzca una dirección de correo electrónico válida.");
document.registro.correo.focus();
return (false); }
if (document.registro.password.value=='') {
alert('Es necesario escribir su contraseña, verifique');
return false; }
if (document.registro.password.value!=document.registro.password2.value) {
alert('La contraseña y la confirmación no coinciden, verifique');
return false; }
if (document.registro.password2.value.length<=5) {
alert('La contraseña debe contener al menos 6 caracteres, verifique');
return false; }
document.registro.submit();
}
</script>
<%
'set dbconn = server.createobject("ADODB.Connection")
'dbconn.open
nombre = request.form ("nombre")
apellidos = request.form ("apellidos")
area = request.form ("area")
ext = request.form ("ext")
correo = request.form ("correo")
usuario = request.form ("usuario")
password = request.form ("password")
sql = "INSERT INTO usuarios_area (nombre,apellidos,area,extencion,correo,usuario,password) values ('"& nombre &"','"& apellidos &"','"& area &"','"& ext &"','"& correo &"','"& usuario&"','"& password &"')"
conn.execute (sql)
response.Write("Se han ingresado correctamente los datos")
' dbconnn.close
%>
<form name="registro" method="post" action="registro_personal.asp">
<table width="775" border="0" align="center" cellpadding="5" cellspacing="5">
<tr>
<td><table width="775" border="0" cellpadding="3" cellspacing="3">
<tr>
<td width="268">Nombre</td>
<td width="486"><label>
<input type="text" name="nombre" />
</label></td>
</tr>
<tr>
<td>Apellidos</td>
<td><input type="text" name="apellidos" /></td>
</tr>
<tr>
<td>Area de adscripción </td>
<td><input type="text" name="area" /></td>
</tr>
<tr>
<td>Extención</td>
<td><input type="text" name="ext" /></td>
</tr>
<tr>
<td>Correo</td>
<td><input type="text" name="correo" /></td>
</tr>
<tr>
<td>Usuario*</td>
<td><input type="text" name="usuario" /></td>
</tr>
<tr>
<td>Password</td>
<td><input type="text" name="password" /></td>
</tr>
<tr>
<td>Confirmar Password </td>
<td><input type="text" name="password2" /></td>
</tr>
<tr>
<td>Tipo de usuario</td>
<td><table width="237" border="0">
<tr>
<td width="86">Administrador</td>
<td width="40"><label>
<input type="checkbox" name="a1" value="checkbox" />
</label></td>
<td width="58">Bitacora</td>
<td width="35"><input type="checkbox" name="b1" value="checkbox" /></td>
</tr>
</table></td>
</tr>
<tr>
<td height="25"> </td>
<td><label>
<input type="submit" name="Enviar" onClick="Javascript:valida();" value="Submit" />
<input type="reset" name="Borrar" value="Reset" />
</label></td>
</tr>
</table></td>
</tr>
</table>
</form>
</body>
</html>