I need to show particular persons info on the next page info.php
by clicking the name which is inside the anchor tag. So how can i pass the value of id of that person on the next page and retrieve data from it.
<tr>
<?php
while($row = mysqli_fetch_assoc($result)){
echo '<tr>';
echo '<td>'.$row['id'].'</td>';
echo '<td><a href="">'.$row['name'].'</a></td>';
echo '<td>'.$row['username'].'</td>';
echo '<td>'.$row['password'].'</td>';
echo '</tr>';
}
?>
</tr>