-
Notifications
You must be signed in to change notification settings - Fork 0
/
RegistrarConaero.php
33 lines (33 loc) · 1.46 KB
/
RegistrarConaero.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Registrar Controlador Aéreo</title>
<?php
$page="RegistrarConaero"; include("Header.php");
?>
</head>
<body>
<?php
$dbconn = pg_connect("host=159.89.34.186 dbname=aeropuerto user=postgres password=papitopiernaslargas69");
if($dbconn){
if(isset($_POST['conaero'])){
pg_query_params($dbconn,"SELECT addconaero($1,$2,$3,$4)",array($_REQUEST['dni'],$_REQUEST['nsindicato'],$_REQUEST['nombre'],$_REQUEST['fechaexamen']));
echo("<script>alert('Controlador Aereo Creado!');</script>");
}
}
?>
<form class="form_base" action="RegistrarConaero.php" method="POST">
<h1>Registrar Controlador Aéreo</h1>
<label>Ingrese DNI</label>
<input type="text" name="dni" required="required" pattern="[0-9]{13}" placeholder="Numero De Identidad">
<label>Ingrese Numero De Afiliación</label>
<input type="text" name="nsindicato" required="required" pattern="[0-9]{10}" placeholder="Numero De Sindicato">
<label>Ingrese Nombre</label>
<input type="text" name="nombre" required="required" placeholder="Nombre Completo">
<label>Ingrese Fecha De Su Examen Médico Mas Reciente</label>
<input type="date" name="fechaexamen" required="required" placeholder="Fecha de Examen Médico">
<input type="submit" name="conaero" value="Registrar">
</form>
</body>
</html>