Last active
April 10, 2020 17:40
-
-
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/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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