function Novo() { $inicio = explode("/", $this->data_inicial); $inicio = "{$inicio[2]}-{$inicio[1]}-{$inicio[0]}"; $inicio .= " " . date("H:i:s", strtotime($this->hora_inicial)); $fim = explode("/", $this->data_final); $fim = "{$fim[2]}-{$fim[1]}-{$fim[0]}"; $fim .= " " . date("H:i:s", strtotime($this->hora_final)); $objReuniao = new clsReuniao($this->codReuniao, false, false, false, false, false, false, $inicio, $fim); $objReuniao->edita(); foreach ($_POST as $id => $campo) { if (substr($id, 0, 4) == "par_") { $cod = substr($id, 4); $finalizado = $_POST["fin_{$cod}"] ? "1" : ""; $obj = new clsTopicoReuniao($cod, $this->codReuniao, $campo, $finalizado); $obj->edita(); } if (substr($id, 0, 4) == "pes_") { $cod = substr($id, 4); $objParticipante = new clsParticipante($cod, $this->codGrupo, $this->codReuniao, false, $inicio, $fim); $objParticipante->cadastra(); } } header("Location: otopic_meus_grupos_det2.php?cod_grupo={$this->codGrupo}"); }