コード例 #1
0
ファイル: registro.php プロジェクト: jorgcastellano/inia
<?php

extract($_POST);
include_once '../../includes/conexion.php';
include_once '../../system/classesp.php';
if (!empty($ci) and !empty($name) and !empty($apel) and !empty($telefono) and !empty($laboratorio) and !empty($especialidad)) {
    $objesp = new especialista();
    $objesp->insertar_especialista($mysqli, $ci, $laboratorio, $name, $apel, $telefono, $especialidad);
    header('location: ../home/inicio');
} else {
    header("location: culminar_registro");
}