[American Animal Hospitals and Clinics]
Below we list every town in Kentucky for which we have information for animal medical care professionals. Just scroll down to your town to get a list of all the local Animal Care Professionals and Hospitals in your area.
[INSERT_PHP]
include(“/home/bruning/public_html/includes/us_vets_login.php”);
	$query = “select DISTINCT city from vets_usa where (state=’KY’) order by city asc”;
	$query2 = mysqli_query($con,$query) or die(mysqli_error());
	while ($query3 = mysqli_fetch_array($query2)) {
		$tempcity = $query3[‘city’];
                if ($tempcity) {
                        echo “
echo “
 $tempcity
 $tempcity
“;
                        $vetquery = “select name,phone,address from vets_usa where (state=’KY’) and (city='”;
                        $vetquery .= $tempcity . “‘) order by name asc”;
                        $vetquery2 = mysqli_query($con,$vetquery) or die(mysqli_error());
                        $count = 0;
                 	echo “
| $name $address $phone | 
“;
                        echo “
“;
	         }
	}
[/INSERT_PHP]
