userlevels

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • birdy

    userlevels

    I want to display data from a mysql database.
    Thats no problem but i want to hide some fields for some users.
    I understand i have to use userlevels for that.
    But to implement it in dreamweaver is the problem
    When i try to use a var there is nothing displayed at all

    <?php echo $row_DetailRS1['Off_soort_2']; ?>

    is the code line, it is a part of a master/detail page.
    this data should only be displayed on certain userlever (1-99) else no
    acces.

    please help me i'am newbie



  • Alvaro G Vicario

    #2
    Re: userlevels

    *** birdy wrote/escribió (Mon, 27 Jun 2005 13:24:03 +0200):[color=blue]
    > I want to display data from a mysql database.
    > Thats no problem but i want to hide some fields for some users.
    > I understand i have to use userlevels for that.
    > But to implement it in dreamweaver is the problem
    > When i try to use a var there is nothing displayed at all
    >
    > <?php echo $row_DetailRS1['Off_soort_2']; ?>
    >
    > is the code line, it is a part of a master/detail page.
    > this data should only be displayed on certain userlever (1-99) else no
    > acces.
    >
    > please help me i'am newbie[/color]

    I'm afraid your question is not PHP-related but Dreamweaver related.
    Userlevels is probably a tool provided by your editor, it doesn't exist as
    such in PHP or MySQL.

    As about a pure PHP solution, it'd be something like this:

    switch($_SESSIO N['user_type']){
    case 'admin':
    $sql='SELECT foo, bar, blah FROM table';
    break;
    case 'moderator':
    $sql='SELECT foo, bar FROM table';
    break;
    case 'user':
    $sql='SELECT foo FROM table';
    break;
    default:
    die('Error: Not logged');
    }

    However, I can't tell you how to implement it in Dreamweaver.

    --
    -- Álvaro G. Vicario - Burgos, Spain
    -- http://bits.demogracia.com - Mi sitio sobre programación web
    -- Don't e-mail me your questions, post them to the group
    --

    Comment

    Working...