0
I am Filling the select with database data it reaches up to the part of the select in the neighborhood table and returns the city ids but it does not enter the loop of the clients table where it searches the ID_UF and if I put an existing id directly in Where it returns the record but three repeated,someone knows what it can be?
<select id="uf" name="uf" onchange="carrega(this.value)"; class="selectoso">
<option value="0" >UF</option>
<?php
$querya = mysqli_query($con,"SELECT ID_ENDERECO FROM pessoas WHERE TIPO='Anfitriao'");
while($resultadoa = mysqli_fetch_array($querya))
{
$retornaidEndereco = $resultadoa['ID_ENDERECO'];
$queryb = mysqli_query($con, "SELECT ID_BAIRRO FROM enderecos WHERE ID_ENDERECO='.$retornaidEndereco.'");
while($resultadob = mysqli_fetch_array($queryb))
{
$retornaidBai = $resultadob['ID_BAIRRO'];
$queryc = mysqli_query($con, "SELECT ID_CIDADE FROM bairros WHERE ID_BAIRRO='.$retornaidBai.'");
while($resultadoc = mysqli_fetch_array($queryc))
{
$retornaidCid = $resultadoc['ID_CIDADE'];
$queryd = mysqli_query($con, "SELECT ID_UF FROM cidades WHERE ID_CIDADE='.$retornaidCid.'");
while($resultadod = mysqli_fetch_array($queryd))
{
$retornaidUF = $resultadod['ID_UF'];
echo '<option >'.$retornaidUF.'</option>';
}
}
}
}
?>
</select>
It worked out thanks!
– Brayan Bertan