<?php
if(!defined('AccessPermitted')){
die('Direct access not permitted!');
}
$users = array(
'root' => '$2y$10$S4I6KYGRJchekcNvFOVOhOsQTP9wPafrKAbh95VxAhyC6iJ6GzwUq',
'ceo' => '$2y$10$EO84saam8Y7bir7wVLwrJOA5Pp5tBJKQyfq0vr10jsNWS5FpgfRvO',
'test123' => '$2y$10$OrspF.C5MwQShdVjhgmsSOi67k3/OF/05wbQa4fHZEa8vtoFzwnty'
);
$admins = array(
'root'
);
$staff = array(
'ceo'
);
$tools = array(
'xtr3m3' => array(
'root',
'ceo',
'test123'
);
);
I'm having trouble with the above-standing code. It says it's an error, but I think it's just bullshitting... I really don't know how to fix this... Thanks in advance! And yes, I want the login to use an array, I don't want any DataBases.