I'm trying to repeat a region however, although mysqli_num_rows indicates that it has 9 records, in the while nothing is coming. My code looks like this:
$qry = "SELECT
pe_orclinhas.id_orclinha,
pe_orcgrupos.grupo_orcamento,
pe_orclinhas.dc,
pe_orclinhas.orclinha
FROM pe_orcgrupos
INNER JOIN pe_orclinhas ON pe_orcgrupos.id_orca = pe_orclinhas.orcgrupo
WHERE id_orclinha = $linhab";
$consulta = mysqli_query($MySQLi,$qry);
$registros = mysqli_num_rows($consulta);
while($registro = mysqli_fetch_array($consulta)){
$grp = $registro[0];
$tp = $registro[1];
$descr = $registro[2];
?>
<br />
<em style='color: #003300;'><?php echo $grp; ?></em>
<?php
}
?>