Results 1 to 3 of 3

Thread: member list- make admin different colour from users

  1. #1
    Join Date
    Feb 2010
    Location
    Falkirk, Scotland
    Posts
    142
    Thanks
    21
    Thanked 4 Times in 4 Posts

    Default member list- make admin different colour from users

    i am working on a members list which displays everyone who is registered at site. i am trying to make admin a different colour from regular users so users know who admin are.

    here is my attempt:
    PHP Code:
    <table width="200" border="1" cellspacing="0" cellpadding="3">
          <tr>
            <td align="center"><strong><u>Registered Members</u></strong></td>
            
          </tr>
          <?php
    while($rows=mysql_fetch_array($query)){
    ?>
          <tr>
            <td align="center">
    <?php 
    if($rows['userlevel']= '9'){
       echo 
    '<a href="http://www.shiftysplayground.co.cc/userinfo.php?user='.$rows['username'].'"><font color="gold">'.$rows['username'].'</font></a>';
    }
    else{
       echo 
    '<a href="http://www.shiftysplayground.co.cc/userinfo.php?user='.$rows['username'].'">'.$rows['username'].'</a>';
    }
    ?>
    </td>
            </tr>
          <?php
    }
    ?>
        </table>
    it works to some extent but all names in the table turn gold instead of just admin. can anyone tell me where i went wrong? thanx
    Last edited by liamallan; 03-23-2010 at 12:40 AM.

  2. #2
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    ($rows['userlevel']= '9')
    That is SETTING the variable to 9. = means "set the left side to the right value".
    == is the comparison operator:
    ($rows['userlevel']== '9')
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  3. The Following User Says Thank You to djr33 For This Useful Post:

    liamallan (03-22-2010)

  4. #3
    Join Date
    Feb 2010
    Location
    Falkirk, Scotland
    Posts
    142
    Thanks
    21
    Thanked 4 Times in 4 Posts

    Thumbs up

    thanks again mate, bet ur sick of my face lol i always seem to overlook the simple things. your help is alway greatly appreciated!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •