blob: b84f90c36f6dd2302c6e8233dfe76ddc4df7d07b (
plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
<title>Miami-Dade Clerk of Courts: Search</title>
<link rel='stylesheet' media='all' type='text/css' href='style.css' />
</head>
<body id="case_search">
<h2 style="text-align: center;">Miami-Dade Clerk of Courts case search</h2>
<div id="content">
<div id="search_form">
<form id="search_cases" method="get" action="search.php">
<div>
<label for="case_years">Years</label>
<select id="case_years" name="case_years[]" multiple>
<?php
for ( $year = date("Y"); $year >= 1990; $year-- ) {
echo " <option value='$year'>$year</option>\n";
}
?>
</select>
</div>
<div>
<label for="case_num">Case #</label>
<input type="text" class="case_num" id="case_num" name="case_num" maxlength="6" />
to
<input type="text" class="case_num" id="case_num_to" name="case_num_to" maxlength="6" />
</div>
<div>
<label for="defendant">Defendant #</label>
<select id="defendant" name="defendant">
<option value='' selected='selected'> </option>
<?php
foreach ( range('A', 'Z') as $letter ) {
echo " <option value='$letter'>$letter</option>\n";
}
?>
</select>
</div>
<div>
<label for="name">Name</label>
<input type="text" id="name" name="name" />
</div>
<div>
<label for="charge">Charge</label>
<input type="text" id="charge" name="charge" />
</div>
<div>
<label for="disposition">Disposition</label>
<input type="text" id="disposition" name="disposition" />
</div>
<div>
<label for="docket">Docket</label>
<input type="text" id="docket" name="docket" />
</div>
<div>
<label for="in_jail">In jail?</label>
<select id="in_jail" name="in_jail">
<option value='' selected='selected'> </option>
<option value='Y'>Yes</option>
<option value='N'>No</option>
</select>
</div>
<div>
<label for="prob_given">Given probation?</label>
<input type="checkbox" id="prob_given" name="prob_given" />
</div>
<div>
<label for="prob_still">Still on probation?</label>
<input type="checkbox" id="prob_still" name="prob_still" />
</div>
<div>
<label for="prob_per_complete">Probation completed</label>
<select id="prob_per_complete" name="prob_per_complete">
<option value='' selected='selected'> </option>
<?php
for ( $per = 10; $per <= 100; $per += 10 ) {
echo " <option value='$per'>$per</option>\n";
}
?>
</select>%
</div>
<div>
<label for="prob_start_day">Probation start</label>
<select id="prob_start_day" name="prob_start_day">
<option value='' selected='selected'> </option>
<?php
for ( $day = 1; $day <= 31; $day++ ) {
echo " <option value='$day'>$day</option>\n";
}
?>
</select>
<select id="prob_start_month" name="prob_start_month">
<option value='' selected='selected'> </option>
<?php
for ( $month = 1; $month <= 12; $month++ ) {
echo " <option value='$month'>$month</option>\n";
}
?>
</select>
<select id="prob_start_year" name="prob_start_year">
<option value='' selected='selected'> </option>
<?php
for ( $year = date("Y"); $year >= 1990; $year-- ) {
echo " <option value='$year'>$year</option>\n";
}
?>
</select> (dd/mm/yyyy)
</div>
<div>
<label for="prob_end_day">Probation end</label>
<select id="prob_end_day" name="prob_end_day">
<option value='' selected='selected'> </option>
<?php
for ( $day = 1; $day <= 31; $day++ ) {
echo " <option value='$day'>$day</option>\n";
}
?>
</select>
<select id="prob_end_month" name="prob_end_month">
<option value='' selected='selected'> </option>
<?php
for ( $month = 1; $month <= 12; $month++ ) {
echo " <option value='$month'>$month</option>\n";
}
?>
</select>
<select id="prob_end_year" name="prob_end_year">
<option value='' selected='selected'> </option>
<?php
for ( $year = date("Y"); $year >= 1990; $year-- ) {
echo " <option value='$year'>$year</option>\n";
}
?>
</select> (dd/mm/yyyy)
</div>
<div>
<label for="case_closed">Case closed?</label>
<select id="case_closed" name="case_closed">
<option value='' selected='selected'> </option>
<option value='no'>No</option>
<option value='yes'>Yes</option>
</select>
</div>
<div id="form_submit">
<input type="submit" value="Search" />
</div>
</form>
</div> <!-- end #search_form -->
</div> <!-- end #content -->
</body>
</html>
|