I wrote this code to search users from mysql :
$query = $db->query("SELECT * FROM `users` WHERE `id` = {$id} ");
while($row = $query->fetch_assoc()){
echo $row['username'];
// ....
echo "People also search :";
// the people also search box
}
I want it so that when the user pages load in the bottom of the page be a box like this:
Walter
...
People also search :
Bruce
Kevin
Jesse
something like the Google when you search actors or ...
how could I do this ?