Jump to content
MakeWebGames

Recommended Posts

Posted

does anyone know how to put this so the investment bank is visible to lvls 5 and above. I tried but its not visible to any lvls above 5. .

 

if($ir['level'] == '5') {
   print "<a href = 'investment.php' />Investments</a>";
  }
Posted

Re: Visability

== means equal to eg what u have == 5 only level 5 can see

> smaller numbers this side eg > 5 smaller then 5 could see

< bigger numbers this side < 5 bigger then 5 can see

<= equal or bigger <= 5 + bigger can see

>= equal or smaller >= smaller then 5 and the 5s can see

so u want <4 or =<5

Posted

Re: Visability

 

== means equal to eg what u have == 5 only level 5 can see

> smaller numbers this side eg > 5 smaller then 5 could see

< bigger numbers this side < 5 bigger then 5 can see

<= equal or bigger <= 5 + bigger can see

>= equal or smaller >= smaller then 5 and the 5s can see

so u want <4 or =<5

 

you've got this the wrong way round mate...

>4 means anyone level 5 or over can see

<4 means only levels 1,2 and 3 will be able to see it

Posted

Re: Visability

so if i want people higher lvl then 5 to view it it would b like this

 

if($ir['level'] <= '5') {
   print "<a href = 'bank.php' />bank</a>";
  }

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...