Can I create a table to separate this code? This is the only way to align the data I have
if($exibe['Nome1'] != NULL) {
echo '<p><b>Nome: </b>'.$exibe["Nome1"].' <b> Função : </b>'.$exibe["Funcao1"];
}'</p>
<p>';
if($exibe['Nome2'] != NULL) {
echo '<p><b>Nome: </b>'.$exibe["Nome2"].' <b> Função : </b>'.$exibe["Funcao2"];
}'</p>
I want to put a table like this:
|Nome | Função |
|Nome1 | Função1 |
|Nome2 | Função2 |