-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
45 lines (37 loc) · 851 Bytes
/
Copy pathindex.php
File metadata and controls
45 lines (37 loc) · 851 Bytes
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
<?php
require_once("web.inc");
require_once("imslp_web.inc");
function tags() {
echo "
<p>
<a href=tags.php?action=inst_form>Instruments</a>
<p>
<a href=tags.php?action=wt_form>Work types</a>
<p>
<a href=tags.php?action=lang_form>Languages</a>
";
}
function main() {
page_head("IMSLP/DB", true);
tags();
echo "<h2>Works</h2>";
work_search_form();
form_start('');
form_general(
"Arrangements", button_text("arrangement.php", "View all combos")
);
form_end();
echo "<h2>People</h2>";
person_search_form();
echo "<h2>Ensembles</h2>";
ensemble_search_form();
echo "<h2>Publishers</h2>";
form_start('');
form_general(
"", button_text('publisher.php', 'View all')
);
form_end();
page_tail();
}
main();
?>