When you perform a search and you get multiple responses back, there will be something unique about each line. For example, if you search on "county" and you get 20 suppliers who operate in that county, you will probably have each supplier's Name, Phone, Email, and their ID#.
In the while loop where you print the list of suppliers in that county, your print statement might look something like this:
print "$name, <b>$phone</b>, $email<br>";
You know the ID number of each supplier (for example, maybe it's in a variable called $id), then you can make the name a hot link like this:
print "<a href=\"supplier_info_page.php?id=$id\">$name</a>, <b>$phone</b>, $email<br>";
So you can see that the name is wrapped in an <a href> tag that links to a file called "supplier_info_page.php" but also, the ID# gets passed to that page.
If you have 20 suppliers who match for a certain county, you will get a list of 20 suppliers, names, phones, and emails. But each name will be hyperlinked with a different value for $id
So then you'll have to make a page called supplier_info_page.php that displays the details about a supplier. And on that page, you will have a query that looks like this:
$id = $_GET['id'];
$query = "select * from suppliers where id=$id";