Skip to content

Instantly share code, notes, and snippets.

@guibranco
Last active April 10, 2020 17:40
Show Gist options
  • Save guibranco/2788c39fdb8b9fa8f4d2211790f2ad1d to your computer and use it in GitHub Desktop.
Save guibranco/2788c39fdb8b9fa8f4d2211790f2ad1d to your computer and use it in GitHub Desktop.
Validação de nível no login - Afonso Tomás CAhenga - Facebook - https://www.facebook.com/groups/142151625841770/permalink/2978271755563062/
<?php
session_start();
//seu código de verificar usuário...
//...
//...
//...
$_SESSION['email'] = $code;
$_SESSION['nome'] = $nome;
$_SESION['painel'] = strtolower($painel);
if($painel == "admin")
header("Location: Admin/admin.php");
else
header("Location: {$painel}.php");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment