Baevus the names ethan Nov 4, 2012 565 47 Mar 31, 2013 #1 I'm rank 8 in my hotel. My code is: PHP: <?php if($rank >=4) { ?> <li><a href="{url}/ase">Housekeeping</a><span></span></li> <? } ?> And it won't show.
I'm rank 8 in my hotel. My code is: PHP: <?php if($rank >=4) { ?> <li><a href="{url}/ase">Housekeeping</a><span></span></li> <? } ?> And it won't show.
Kryptos prjRev.com Jul 21, 2010 2,205 1,252 Mar 31, 2013 #2 What's the value of $rank? Upvote 0 Downvote
Baevus the names ethan Nov 4, 2012 565 47 Mar 31, 2013 Thread starter #3 Kryptos said: What's the value of $rank? Click to expand... The users rank Upvote 0 Downvote
Sledmore Chaturbate Livestreamer Staff member FindRetros Moderator Jul 24, 2010 5,199 3,934 Mar 31, 2013 #4 I'm assuming this is RevCMS, try this: PHP: <?php if($_SESSION['user']['rank'] >= 4) { ?> <li><a href="{url}/ase">Housekeeping</a><span></span></li> <?php } ?> Upvote 0 Downvote
I'm assuming this is RevCMS, try this: PHP: <?php if($_SESSION['user']['rank'] >= 4) { ?> <li><a href="{url}/ase">Housekeeping</a><span></span></li> <?php } ?>
Baevus the names ethan Nov 4, 2012 565 47 Mar 31, 2013 Thread starter #5 Sledmore said: I'm assuming this is RevCMS, try this: PHP: <?php if($_SESSION['user']['rank'] >= 4) { ?> <li><a href="{url}/ase">Housekeeping</a><span></span></li> <?php } ?> Click to expand... Thanks, I always think its if($rank) or if($user) Upvote 0 Downvote
Sledmore said: I'm assuming this is RevCMS, try this: PHP: <?php if($_SESSION['user']['rank'] >= 4) { ?> <li><a href="{url}/ase">Housekeeping</a><span></span></li> <?php } ?> Click to expand... Thanks, I always think its if($rank) or if($user)