⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inc_poller_item_filter_table.php

📁 Cacti是一套基于PHP,MySQL,SNMP及RRDTool开发的网络流量监测图形分析工具。 它通过snmpget来获取数据
💻 PHP
字号:
	<tr bgcolor="<?php print $colors["panel"];?>">		<form name="form_pollercache">		<td>			<table cellpadding="0" cellspacing="0">				<tr>					<td nowrap style='white-space: nowrap;' width="50">						Host:&nbsp;					</td>					<td width="1">						<select name="host_id" onChange="applyPItemFilterChange(document.form_pollercache)">							<option value="-1"<?php if ($_REQUEST["host_id"] == "-1") {?> selected<?php }?>>Any</option>							<option value="0"<?php if ($_REQUEST["host_id"] == "0") {?> selected<?php }?>>None</option>							<?php							$hosts = db_fetch_assoc("select id,description,hostname from host order by description");							if (sizeof($hosts) > 0) {							foreach ($hosts as $host) {								print "<option value='" . $host["id"] . "'"; if ($_REQUEST["host_id"] == $host["id"]) { print " selected"; } print ">" . $host["description"] . "</option>\n";							}							}							?>						</select>					</td>					<td nowrap style='white-space: nowrap;' width="50">						&nbsp;Action:&nbsp;					</td>					<td width="1">						<select name="poller_action" onChange="applyPItemFilterChange(document.form_pollercache)">							<option value="-1"<?php if ($_REQUEST['poller_action'] == '-1') {?> selected<?php }?>>Any</option>							<option value="0"<?php if ($_REQUEST['poller_action'] == '0') {?> selected<?php }?>>SNMP</option>							<option value="1"<?php if ($_REQUEST['poller_action'] == '1') {?> selected<?php }?>>Script</option>							<option value="2"<?php if ($_REQUEST['poller_action'] == '2') {?> selected<?php }?>>Script Server</option>						</select>					</td>					<td nowrap style='white-space: nowrap;' width="50">						&nbsp;Search:&nbsp;					</td>					<td width="1">						<input type="text" name="filter" size="40" value="<?php print $_REQUEST["filter"];?>">					</td>					<td nowrap style='white-space: nowrap;'>						&nbsp;<input type="image" src="images/button_go.gif" name="go" alt="Go" border="0" align="absmiddle">						<input type="image" src="images/button_clear.gif" name="clear" alt="Clear" border="0" align="absmiddle">					</td>				</tr>			</table>		</td>		<input type='hidden' name='page' value='1'>		<input type='hidden' name='action' value='view_poller_cache'>		</form>	</tr>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -