I have a MySQL table that has a MySQL query. I have a MySQL table with the following data:
mysql_select_db($database_conCurriculo, $conCurriculo);
$query_rsRegistro = "SELECT nome, email, celular, id_municipio, id_uf, dt_nascimento FROM candidato WHERE id_candidato = 158";
$rsRegistro = mysql_query($query_rsRegistro, $conCurriculo) or die(mysql_error());
$row_rsRegistro = mysql_fetch_assoc($rsRegistro);
$totalRows_rsRegistro = mysql_num_rows($rsRegistro);
//Pegando os nomes dos campos
$numCampos = mysql_num_fields($rsRegistro);//Obtém o número de campos do resultado
for($i = 0;$i<$numCampos; $i++){//Pega o nome dos campos
$Campos[] = mysql_field_name($rsRegistro,$i);
}
//Montando o cabeçalho da tabela
$tabela = '<table border="1"><tr>';
for($i = 0;$i < $numCampos; $i++){
$tabela .= '<th>'.$Campos[$i].'</th>';
}
//Montando o corpo da tabela
$tabela .= '<tbody>';
while($r = mysql_fetch_array($rsRegistro)){
$tabela .= '<tr>';
for($i = 0;$i < $numCampos; $i++){
$tabela .= '<td>'.$r[$Campos[$i]].'</td>';
}
$tabela .= '</tr>';
echo $tabela;
}
exit;
//Finalizando a tabela
$tabela .= '</tbody></tabela>';
//Imprimindo a tabela
echo $tabela;