This is a discussion on Button Permission within the PHP General forums, part of the PHP Programming Forums category; Hi Freinds, Does anyone used any code or class for buttons to limit the access of the button based on ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi Freinds,
Does anyone used any code or class for buttons to limit the access of the button based on the user login level? I have a page which has 5 buttons and need to display / disable / hide buttons based on user login type and level. Any idea? Thanks in advance, Pat |
|
|||
|
pat wrote:
> Hi Freinds, > Does anyone used any code or class for buttons to limit the access of > the button based on the user login level? > > I have a page which has 5 buttons and need to display / disable / hide > buttons based on user login type and level. > > Any idea? > > Thanks in advance, > Pat <?php $userlevel = 1 // example if ($userlevel > 3) { ?>code for button<?php } if ($userlevel > 1) { ?>code for button<?php } if ($userlevel > 4) { ?>code for button<?php } ?> et cetera, et cetera, et cetera :-) |