-
Notifications
You must be signed in to change notification settings - Fork 1
/
found.php
39 lines (39 loc) · 2.04 KB
/
found.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
39
<?php
include "conn/conn.php";
?>
<table width="265px" border="0" cellpadding="0" cellspacing="0">
<form id="found" name="found" method="post" action="show.php">
<tr>
<td height="30px" colspan="2" align="center" valign="top" background="images/found.jpg"> </td>
</tr>
<tr>
<td width="100px" height="34px" align="right" valign="middle" class="l_td"> </td>
<td width="165px" align="left" valign="middle" class="l_td"> </td>
</tr>
<tr>
<td height="30px" align="right" valign="middle" class="l_td"><strong>关键字:</strong></td>
<td height="30px" align="left" valign="middle" class="l_td">
<input type="text" name="k_word" id="k_word" class="mytext" onmouseover="this.style.backgroundColor='#deebef'" onmouseout="this.style.backgroundColor=''" />
</td>
</tr>
<tr>
<td height="32px" align="right" valign="middle" class="l_td"><strong>信息类别:</strong></td>
<td height="32" align="left" valign="middle" class="l_td">
<select name="m_type" class="mytext" style="width:80px;" onmouseover="this.style.backgroundColor='#deebef'" onmouseout="this.style.backgroundColor=''">
<option value="video" selected="selected">歌曲名称</option>
<option value="audio">视频名称</option>
</select>
</td>
</tr>
<tr>
<td height="40px" colspan="2" align="center" valign="middle" class="l_td">
<input type="hidden" name="action" value="l_found" />
<input type="submit" name="query" id="query" value="查询" />
<input type="button" name="h_query" id="h_query" value="高级查询" onclick="javascript:Wopen=open('operation.php?action=search','','height=700,width=665,scrollbars=no');"/>
</td>
</tr>
<tr>
<td colspan="2" align="center" valign="top" class="l_td"> </td>
</tr>
</form>
</table>