while($row = mysql_fetch_assoc($result))
{
if($row['level'] == '1') //COMO ADICIONO PARA OUTRO NIVEL CONSEGUIR VER ESTA PAGINA?
{
echo('OLAAAA');
}
else
{
echo('NAO TENS ACESSO A ESTA PAGINA');
}
}
How do I add the other user with another value to also be able to see the page? Without being only what has the value of 1
?