Пример #1
0
 public function ingresarServicio()
 {
     $id = $_POST['ingresarID'];
     $descripcion = $_POST['ingresarDescripcion'];
     $cuenta = $_POST['ingresarCuenta'];
     $servicio = Servicios::__construct1($id, $descripcion, $cuenta);
     $servicio->createServicio($servicio);
     $this->load->view('servicio.html');
     $servicio->to_table($servicio->listar_Tabla());
 }