0
How can I make it only show to the user who is with $cargo == 'Administrador'
?
I saw many being used with number, but I want to leave registered with name Administrator or Visitor and so in the menu, get it shown only to the user who is in charge Administrator.
It would be something like that?
<?php
if($cargo == "Administrador"){
?>
<li>
<a href="?p=inicio">
<i class="fa fa-home"></i> <span>Inicio</span>
</a>
</li>
<?php
}
?>
And how are you assigning a value to the variable
$cargo
to compare withAdministrador
?– user60252