I need to return the SQL query in an HTML list. In the case I need to line up with "affiliate" and "name", the query below, has correctly returned the requested data, but I need now to put this data one after another in an HTML
//iniciando a conexão com o banco de dados
$cx = mysqli_connect("localhost", "root", "");
//selecionando o banco de dados
$db = mysqli_select_db($cx, "dados");
//criando a query de consulta à tabela criada
$sql = mysqli_query($cx, "SELECT * FROM esocial") or die(
mysqli_error($cx) //caso haja um erro na consulta
);
//pecorrendo os registros da consulta.
while($aux = mysqli_fetch_assoc($sql))
{
echo "-----------------------------------------<br />";
echo "Filial:".$aux["filial"]."<br />";
echo "CPF:".$aux["cpfTrab"]."<br />";
echo "PIS:".$aux["nisTrab"]."<br />";
echo "Sexo:".$aux["sexo"]."<br />";
echo "Raça/Cor:".$aux["racaCor"]."<br />";
echo "Estado Civil:".$aux["estCiv"]."<br />";
echo "Grau Instrução:".$aux["grauIntr"]."<br />";
echo "Data Nascimento:".$aux["dtNascto1"]."<br />";
echo "Cod. Município:".$aux["codMunic1"]."<br />";
echo "UF:".$aux["uf1"]."<br />";
echo "País Nascimento:".$aux["paisNascto"]."<br />";
echo "País Nacionalidade:".$aux["paisNac"]."<br />";
echo "Nome Mãe:".$aux["nmMae"]."<br />";
echo "Nome Pai:".$aux["nmPai"]."<br />";
}