Guest User

Untitled

a guest
Oct 25th, 2017
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <?php
  2.  
  3. public function consultar($msg=""){
  4. /*
  5. * VERIFICA SE HÁ UMA SESSION EM ANDAMENTO, SE NÃO CRIA UMA NOVA
  6. * EM SEGUIDA VERIFICA SE O USUARIO ESTÁ LOGADO, SE NÃO O REDIRECIONA A PAGINA DE LOGIN
  7. *///echo 'consultar ok';
  8. if (!isset($_SESSION)) {
  9. session_start();
  10. }
  11. if (isset($_SESSION['logado']) == true){
  12. $view = new AppViewsCadastrousuarioAluno();
  13. $model = new AppModelsBllAluno();
  14. $view->render($model->consultar(), $msg, "editar");
  15. }
  16. else{
  17. header("Location: http://$_SERVER[HTTP_HOST]/login");
  18. }
  19. }
Add Comment
Please, Sign In to add comment