04/02/2002, 14:57
|
| | | Fecha de Ingreso: enero-2002 Ubicación: Austin, USA
Mensajes: 98
Antigüedad: 22 años, 10 meses Puntos: 0 | |
Re: formulario con PHP.Necesito ayuda No se si esto te sirva, pero lo tengo en un archivo .php
<pre>
.
.
.
</HEAD>
<BODY BGCOLOR="#1180a0" LINK="#ffffff" VLINK="#fffafb" text="#ffffff">
<SCRIPT LANGUAGE="JavaScript">
<!--
function Chequeo_Form(form)
{
if (!(1*form.id.value))
{
alert ("Por favor, indique correctamente su Cédula de Identidad o Número del Pasaporte.");
return (false);
}
}
//-->
</SCRIPT>
<?php include("../libreria.phtml") ?>
<?php CabeceraPagina(); ?>
<? if ($REQUEST_METHOD=="POST")
{
include("../conexion.phtml");
$connect = Conectarse();
{
$query="select * from docente where cedula=0;";
switch ($tipousuario)
{
case "docente":
$query="select * from docente where cedula='".$id."';";
break;
case "administrativo":
$query ="select * from administrativo where cedula='". $id . "';";
break;
case "pregrado":
$query = "select * from pregrado where carnet='". $carnet."';";
break;
case "postgrado":
$query = "select * from postgrado where carnet='". $carnet."';";
break;
}
$result = pg_exec($connect,$query);
$num = pg_numrows($result);
if ($num>0) $array = pg_fetch_row($result, 0);
else
{
print ("<BR><BR><I>ERROR <BR>");
print ("Es probable que se deba a:<BR>");
print ("<ul>");
print ("<li>Señaló incorrectamente el tipo de usuario que es. Inténtelo nuevamente</li>");
print ("<li>No está registrado en nuestra base de datos. </li>");
exit();
}
pg_close($connect);
session_register("array");
?>
<SCRIPT LANGUAGE="JavaScript">
<!--
location.href="net1.php";
//-->
</SCRIPT>
<?php
}
}
else
{
?>
<form action="index.php3" method="POST" onSubmit="return Chequeo_Form(this)">
<center>
<H1>SOLICITUD DE SERVICIO EN net</H1>
<table border="0">
<tr>
</tr>
<tr>
<td>Nro. de Cédula o Pasaporte:</td>
<td><input type="text" name="id" size="10" maxlength="10"> (*)<BR></td>
</tr>
<tr>
<td>Nro. de Carnet:</td>
<td><input type="text" name="carnet" size="10" maxlength="10"> <BR></td>
</tr>
<tr>
<td>Tipo de Usuario: </td>
<td>
<select name="tipousuario">
<option value="null">--seleccione--</option>
<option value="docente">Profesor</option>
<option value="administrativo">Empleado</option>
<option value="pregrado">Tesista / Pasante</option>
<option value="postgrado">Estudiante de Postgrado</option>
</select> (*)<BR>
</td>
</tr>
</table>
</center>
<BR>
<center>
<BR><font size="-5">(*)Campos obligatorios</font><BR><BR><BR>
<input type="submit" value="Siguiente --->">
</center>
</form>
<?
}
PiePagina();
?>
</BODY>
</HTML>
</pre> |