-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformat_clinics_by_loc.php
38 lines (30 loc) · 1.14 KB
/
format_clinics_by_loc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title><?php require_once('access.php'); echo $event_tools_event_name; ?> Clinics by Date and Location</title>
<link href="clinics.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1><?php require_once('access.php'); echo $event_tools_event_name; ?> Clinics by Date and Location</h1>
<a href="index.php">Back to main page</a>
<!-- URLS with e.g. ?tag=DCC will select only items with specific tags -->
<form method="get" action="format_clinics_by_loc.php">
<button type="submit">Show only clinics with tag:</button>
<select name="tag">
<?php require_once('access.php'); require_once('utilities.php');
foreach(get_clinic_tags() as $tag) { echo "<option>".$tag."</option>"; }
?>
</select>
</form>
<?php
require_once('access.php');
require_once('utilities.php');
require_once('locale.php');
require_once('parsers.php');
$where = parse_clinic_query();
format_clinics_by_loc("format_all_clinics.php#", $where);
?>
</body>
</html>