$title=$headline="Active Emergency E-mail Stations";
require "../world_head.php";
require "geoFunctions.php";
$db=open_mysql("aprsweb");
$sql="SELECT * FROM emergency";
$query=mysql_query($sql,$db);
while ( $rec=mysql_fetch_array($query) ) {
?>
echo urlToClickable($rec["email"]); ?>
if ( 0 == $rec["range"] ) {
?>
Range is zero ... user will be notified of all emergencies
} else {
?>
" ALT="Map of your suggested location">
printf("Lat Lon: %lf %lf",$rec["latitude"],$rec["longitude"]); ?>
}
}
require "../world_foot.php";
?>