Thanks for the efforts...
I am still lost... the suggestion given seems to be part of a script action? below is more of my existing script:
}
if (!($limit)){
$limit = 10;} // Default results per-page.
if (!($page)){
$page = 0;} // Default page value.
$numresults = mysql_query("SELECT `name` , `address` , `city` , `phone` , `www` ,`subcatid` FROM `bus_list` WHERE 1 AND `category` LIKE '%Dentists%' "); // the query.
$numrows = mysql_num_rows($numresults); // Number of rows returned from above query.
if ($numrows == 0){
echo("No results found matching your query - $query");
exit();}
I am looking for a seperate (html) form that will send the menu selection to the script (seperate document) is this possible?