I am not able to do something, I am a beginner in php and web programming and I am trying to make a page to receive the ID of any user through a click on the link:
'while($linha = mysqli_fetch_array($result) ) {
$id_usuario = $linha['ID_usuario'];
$name = $linha['nome'];
$Sexo= $linha['sexo'];
echo "<tr> <td><a href='#'>$id_usuario</a></td> <td>$name</td> <td>$Sexo</td> <td>Tipo</td> </tr>"; //falta definir a pagina
}'
It is a simple procedure I believe, on the other page I would like to get the user id and make a Select on all the information of this user registered in the database, but I want to know how I could do this on this other page