How can I make it just show the user that they have $cargo == 'Administrador'
?
I have seen many being used with number, but I want to leave it registered with the name Administrator or Visitor and thus in the menu, to be able to be shown only to the user who is in charge Administrator.
Would it be something like this?
<?php
if($cargo == "Administrador"){
?>
<li>
<a href="?p=inicio">
<i class="fa fa-home"></i> <span>Inicio</span>
</a>
</li>
<?php
}
?>