예제 #1
0
파일: ajaxdel.php 프로젝트: GoPlaceIn/siacc
function fntDeletaNivelDificuldade()
{
    $t = new NivelPergunta();
    $t->setCodigo(base64_decode($_POST['id']));
    if ($t->DeletaNivelPergunta()) {
        echo Comuns::Idioma("@lng[Excluído com sucesso.]");
    } else {
        echo Comuns::Idioma("@lng[Não foi possível deletar o nível da pergunta.] " . $t->getErro());
    }
}