Initially, I do not know how to get the name of the person I clicked to use in the add-on.php page, somebody help me. Thank you.
<table id="test" class="text-center">
<caption>Dados da Tabela Pessoa</caption>
<tr><td><h4>ID</h4></td><td><h4>Nome</h4></td><td><h4>CPF</h4></td></tr>
<?php
$selbanco = "SELECT * FROM pessoa";
$querybanc = mysql_query($selbanco);
//$conta = mysql_num_rows($querybanc); //essa funçao conta quantas linhas tem na tabela do banco
while ($linha = mysql_fetch_array($querybanc)){
$id = $linha['id'];
$nomee = $linha['nome'];
$cpff = $linha['cpf'];
//echo "$id $nomee $cpff <br>";
?>
<tr><td><?php echo "$id"; ?></td><td><?php echo "$nomee"; ?></td><td><?php echo "$cpff"; ?></td>
<td><a href="adicionatel.php" class="btn btn-success">Adicionar telefone de contato</a><?php } ?></td></tr>
</table>