If you want to ignore tipo
of 2
completely, it would be ideal not to get them from the database, using for example:
$query = "SELECT * FROM tabela WHERE tipo != 2";
If 2
is maximum type, you can use tipo < 2
.
In this way the mysqli_fetch_object
will only get the values where tipo
is not 2
, without needing to handle this in PHP.
Another option, different from the others, is to use GOTO
, jmp
:
while($pessoa = mysqli_fetch_object($query)){
if($pessoa->tipo === '2'){
goto fim;
}
echo 'Você não é 2!'; // Executa o que tem que fazer.
fim: // Se ele for '2' ele vem direto para cá. :D
}
Try this.