public function retirar() { try { $idPersona = isset($_POST['idPersona']) ? $_POST['idPersona'] : NULL; $opcion = isset($_POST['opcion']) ? $_POST['opcion'] : NULL; $fecha = getdate(); $Alectivo = $fecha["year"]; if ($fecha["month"] == "December") { $Alectivo++; } $mat = new Matricula(); $nota = new Nota(); $falla = new Falla(); if ($opcion == "1") { $mat->retirarEstudiante($idPersona, $Alectivo); } else { if ($opcion == "2") { $mat->eliminarMatriculaPorId($idPersona); } } $nota->eliminarNotasPorId($idPersona); $falla->eliminarFallasPorId($idPersona); echo json_encode(1); } catch (Exception $exc) { echo json_encode('Error de aplicacion: ' . $exc->getMessage()); } }