Esempio n. 1
0
function fntDeletaGrupoPergunta()
{
    $t = new GrupoPergunta();
    $t->setCodgrupo(base64_decode($_POST['id']));
    if ($t->Deleta()) {
        echo Comuns::Idioma("@lng[Excluído com sucesso.]");
    } else {
        echo Comuns::Idioma("@lng[Não foi possível deletar o agrupador de pergunta.] " . $t->getErro());
    }
}