Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- public function consultar($msg=""){
- /*
- * VERIFICA SE HÁ UMA SESSION EM ANDAMENTO, SE NÃO CRIA UMA NOVA
- * EM SEGUIDA VERIFICA SE O USUARIO ESTÁ LOGADO, SE NÃO O REDIRECIONA A PAGINA DE LOGIN
- *///echo 'consultar ok';
- if (!isset($_SESSION)) {
- session_start();
- }
- if (isset($_SESSION['logado']) == true){
- $view = new AppViewsCadastrousuarioAluno();
- $model = new AppModelsBllAluno();
- $view->render($model->consultar(), $msg, "editar");
- }
- else{
- header("Location: http://$_SERVER[HTTP_HOST]/login");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement