PHP和Mysql权限系统

时间:2014-02-13 21:44:18

标签: php mysql

你好,我正在徘徊,我怎么能做到这一点。

if ($accounttype == a) {
      print('Member')
     }
      elseif ($accounttype == b) {
        print('Moderator')
      }
      elseif ($accounttype == c) {
        print('Admin')
      }
      else {
        print('No rank') 
      }

1 个答案:

答案 0 :(得分:0)

尝试使用它:

 if ($accounttype == 'a') {
    print 'Member';
 } elseif ($accounttype == 'b') {
    print 'Moderator';
 } elseif ($accounttype == 'c') {
    print 'Admin';
 } else {
    print 'No rank';
 }

您需要在引号中使用字符串,并且不要忘记行尾的分号;