[American Animal Hospitals and Clinics]
Below we list every town in Alabama 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=’AL’) order by city asc”;
$query2 = mysqli_query($con,$query);
while ($query3 = mysqli_fetch_array($query2)) {
$tempcity = $query3[‘city’];
if ($tempcity) {
echo “
echo “
$tempcity
“;
$vetquery = “select name,phone,address from vets_usa where (state=’AL’) and (city='”;
$vetquery .= mysqli_escape_string($con,$tempcity) . “‘) order by name asc”;
$vetquery2 = mysqli_query($con,$vetquery);
$count = 0;
echo “
$name $address $phone |
“;
echo “
“;
}
}
[/INSERT_PHP]