本文目錄
- 搜索表單的變量說明
- 單條件搜索的表單制作范例
帝國CMS內置強大的搜索功能,用戶只需制作搜索表單指向搜索處理頁面即可實現相應搜索。本文講解:搜索表單制作語法。
搜索表單的變量說明
單條件搜索的表單制作范例
一、表單范例1:
1、用Dreamweaver制作好表單:
設計視圖:
代碼模式下的表單代碼
<table width="320" border="0" cellspacing="1" cellpadding="3">
<form name="searchform" method="post" action="/e/search/index.php">
<tr>
<td>關鍵字:<input name="keyboard" type="text" size="10"></td>
<td>范圍:
<select name="show">
<option value="title">標題</option>
<option value="smalltext">簡介</option>
<option value="newstext">內容</option>
<option value="writer">作者</option>
<option value="title,smalltext,newstext,writer">搜索全部</option>
</select></td>
</tr>
<tr>
<td>欄 目:
<select name="classid">
<option value="0">搜索全部</option>
<option value="1">新聞中心</option>
<option value="4">技術文檔</option>
<option value="22">下載中心</option>
</select> </td>
<td><input type="submit" name="submit" value="搜索"></td>
</tr>
</form>
</table>
2、最終搜索表單顯示效果為下圖:
搜索表單多條件并列搜索的語法說明
多字段、多邏輯運算聯結符并列搜索
(一)、多字段并列搜索:有“字符串”與“數組”兩種傳遞方式
1、字符串傳遞為例子:
<input type="hidden" name="hh" value="LK">
<input type="hidden" name="show" value="title,writer">
<input type="hidden" name="keyboard" value="標題,作者">
(說明:上面為模糊查詢title字段包含“標題”字符或者writer字段包含“作者”的信息)
2、數組傳遞為例子:
<input type="hidden" name="hh" value="LK">
<input type="hidden" name="show[]" value="title">
<input type="hidden" name="keyboard[]" value="標題">
<input type="hidden" name="show[]" value="writer">
<input type="hidden" name="keyboard[]" value="作者">
(說明:上面為模糊查詢title字段包含“標題”字符或者writer字段包含“作者”的信息)
(二)、多邏輯運算聯結符并列搜索
1、字符串傳遞為例子:
<input type="hidden" name="hh" value="LK,EQ">
<input type="hidden" name="show" value="title,writer">
<input type="hidden" name="keyboard" value="標題,作者">
(說明:上面為模糊查詢title字段包含“標題”字符或者writer字段等于“作者”的信息)
2、字符串傳遞為例子:
<input type="hidden" name="show[]" value="title">
<input type="hidden" name="hh[]" value="LK">
<input type="hidden" name="keyboard[]" value="標題">
<input type="hidden" name="show[]" value="writer">
<input type="hidden" name="hh[]" value="EQ">
<input type="hidden" name="keyboard[]" value="作者">
(說明:上面為模糊查詢title字段包含“標題”字符或者writer字段等于“作者”的信息)
多條件并列搜索的表單制作范例
二、表單范例2:實現按標題、作者、錄入者與信息ID同時搜索的表單
1、用Dreamweaver制作好表單:
設計視圖:
代碼模式下的表單代碼
上面例子html代碼
<form name="searchform" method="post" action="/e/search/index.php">
<table width="550" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<input type="hidden" name="tbname" value="news">
<input type="hidden" name="tempid" value="1">
<input type="hidden" name="andor" value="and">
<tr class="header">
<td colspan="2">新聞搜索</td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="97">標題:</td>
<td width="388">
<input type="hidden" name="show[]" value="title">
<input type="hidden" name="hh[]" value="LK">
<input name="keyboard[]" type="text">
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td>作者:</td>
<td>
<input type="hidden" name="show[]" value="writer">
<input type="hidden" name="hh[]" value="LK">
<input name="keyboard[]" type="text">
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td>錄入者:</td>
<td>
<input type="hidden" name="show[]" value="username">
<input type="hidden" name="hh[]" value="EQ">
<input name="keyboard[]" type="text">
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td>信息ID范圍:</td>
<td>
<input type="hidden" name="show[]" value="id">
<input type="hidden" name="hh[]" value="BT">
<input name="keyboard[]" type="text">
<font color="#666666">(例:“1 6”表示1到6之間) </font>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td> </td>
<td>
<input type="submit" name="Submit" value="馬上搜索">
<font color="#666666">(不設置為不限)</font>
</td>
</tr>
</table>
</form>
2、最終搜索表單顯示效果為下圖: