-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (62 loc) · 2.33 KB
/
index.html
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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>전자도서관 검색</title>
</head>
<body>
<h2>전자도서관 통합검색</h2>
내 도서관 검색:
<form name="input" action="search.php" method="get">
<select name="type">
<option value="title">책이름</option>
<option value="author">저자</option>
</select>
<input type="text" name="keyword" />
<input type="hidden" name="page" value="1" />
<input type="hidden" name="xml" value="myelib.xml" />
<input type="hidden" name="exclude_booktopia" value="on" />
<input type="hidden" name="exclude_els21" value="on" />
<input type="hidden" name="filter_mobile" value="on" />
<input type="submit" value="검색" />
</form>
전체 도서관 검색:
<form name="input" action="search.php" method="get">
<select name="type">
<option value="title">책이름</option>
<option value="author">저자</option>
</select>
<input type="text" name="keyword" />
<input type="hidden" name="page" value="1" />
<input type="hidden" name="xml" value="koelib.xml" />
<input type="submit" value="검색" />
<br />
<table>
<tr>
<td><input type="checkbox" name="exclude_bookcube" value="on" />북큐브 제외</td>
<td><input type="checkbox" name="exclude_kyobo" value="on" />교보 제외</td>
<td><input type="checkbox" name="exclude_epyrus" value="on" />에피루스 제외</td>
<td><input type="checkbox" name="exclude_opms" value="on" />OPMS 제외</td>
</tr>
<tr>
<td><input type="checkbox" name="exclude_yes24" value="on" />YES24 제외</td>
<td><input type="checkbox" name="exclude_booktopia" value="on" checked />북토피아 제외</td>
<td><input type="checkbox" name="exclude_els21" value="on" checked />ELS21 제외</td>
<td><input type="checkbox" name="exclude_nuri" value="on" checked />누리미디어 제외</td>
</tr>
<tr>
<td colspan="3"><input type="checkbox" name="filter_mobile" value="on" />스마트폰만 검색</td>
</tr>
</table>
</form>
국가자료 공동목록
<form name="input" action="kolisnet.php" method="get">
<select name="type">
<option value="title">책이름</option>
<option value="author">저자</option>
</select>
<input type="text" name="keyword" />
<input type="hidden" name="page" value="1" />
<input type="submit" value="검색" />
</form>
</body>
</html>