PHP expert |
|
config file:
$userlvl = $mysqlquery->lvl;
functie file:
function adminlog()
{
if($userlvl != 1)
{
return "Stout, je bent geen admin";
}
}
admin.php
include "config.php";
include "functie.php";
adminlog();
echo "Mooi je bent admin";
Probleem
Zo ziet er simpel uit.
De instelling zijn correct. Het account is admin alleen geeft hij toch aan dat het account geen admin is.
Wat is helemaal raar?
Als ik de code van de functie in admin.php zet geeft hij geen foutmelding. |