예제 #1
0
파일: ajaxdel.php 프로젝트: GoPlaceIn/siacc
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());
    }
}