• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP html_header函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中html_header函数的典型用法代码示例。如果您正苦于以下问题:PHP html_header函数的具体用法?PHP html_header怎么用?PHP html_header使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了html_header函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: redirect

function redirect($url, $hiddenUrl)
{
    header("Location: {$url}");
    html_header();
    echo 'This page has moved to <a href="' . $hiddenUrl . '">HERE :)</a>';
    exit;
}
开发者ID:TimonPeng,项目名称:wivet,代码行数:7,代码来源:16.php


示例2: printoutPreview

 function printoutPreview () {
     echo html_header($this->config);
             
     echo $this->toStringPreview();
     
     echo html_footer();
 }
开发者ID:ratbird,项目名称:hope,代码行数:7,代码来源:ExternModuleNewsticker.class.php


示例3: html_header_demo

function html_header_demo($title = null, $included_files = null, $path = null, $no_cache = true)
{
    $hash = array('Home' => fbWeb::getWebRoot(), 'Demos' => fbWeb::getWebRoot() . '/demo');
    if ($title) {
        $hash[$title] = '';
    }
    return html_header($hash, $included_files, $path, $no_cache);
}
开发者ID:Artea,项目名称:freebeer,代码行数:8,代码来源:_header.php


示例4: printoutPreview

 function printoutPreview ($args) {
     
     if ($this->config->getValue("Main", "wholesite"))
         echo html_header($this->config);
     
     require_once($GLOBALS["RELATIVE_PATH_EXTERN"]
             . "/modules/views/ExternSemLectureTree.class.php");
     
     $tree = new ExternSemLectureTree($this->config, $args["start_item_id"]);
     $tree->showSemTree();
     
     if ($this->config->getValue("Main", "wholesite"))
         echo html_footer();
 }
开发者ID:ratbird,项目名称:hope,代码行数:14,代码来源:ExternModuleSemlecturetree.class.php


示例5: cookie_check

function cookie_check()
{
    global $cfg;
    if (!isset($_SESSION['cookie_check'])) {
        if (isset($_GET['cookie_check'])) {
            html_header("Cookie Support Required");
            echo "<p>Cookies are not supported by your browser. " . "Please enable cookies and <a href=\"" . selflink() . "\">try again</a>.</p>";
            html_footer();
            exit;
        } else {
            $_SESSION['cookie_check'] = 1;
            redirect(selflink('cookie_check=1'));
        }
    }
}
开发者ID:reddragon,项目名称:Online-Grading-System,代码行数:15,代码来源:lib.php


示例6: account_header

function account_header($title)
{
    global $PHP_SELF, $LOGIN_USER, $LOGIN_LEVEL;
    html_header("{$title}");
    html_start_links(1);
    html_link("{$LOGIN_USER}", "{$PHP_SELF}");
    html_link("Change Password", "{$PHP_SELF}?P");
    if ($LOGIN_LEVEL == AUTH_ADMIN) {
        html_link("Manage Accounts", "{$PHP_SELF}?A");
    }
    if ($LOGIN_LEVEL > AUTH_USER) {
        html_link("New/Pending", "{$PHP_SELF}?L");
    }
    html_link("Logout", "{$PHP_SELF}?X");
    html_end_links();
}
开发者ID:jokepinocchio,项目名称:MiniXML,代码行数:16,代码来源:account.php


示例7: makeHtaccess

function makeHtaccess()
{
    global $scriptPath, $baseURL;
    if (is_file($scriptPath . ".htaccess")) {
        return;
    }
    $htaccess = <<<EOF
Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteRule ^bbclone/.*\$ - [PT]
RewriteRule ^([^_]+)_player/(.*)\$ index.php?command=\$1_player&dir=\$2 [NC,L]
RewriteRule ^rss/(.*)\$ index.php?command=rss&dir=\$1 [NC,L]
RewriteRule ^slide/(.*)\$ index.php?command=slide&dir=\$1 [NC,L]
RewriteRule ^thumbs/(.*)\$ index.php?command=thumbs&dir=\$1 [NC,L]
RewriteRule ^captions/(.*)\$ index.php?command=captions&dir=\$1 [NC,L]
RewriteRule ^(.*)/\$ index.php?command=gallery&dir=\$1
RewriteRule ^\$ index.php?command=gallery&dir= 
EOF;
    if (!is_writable($scriptPath)) {
        $who = exec('whoami');
        html_header("Permissions Error");
        echo "{$scriptPath} is not writable by {$who}. Can not create required .htaccess file.";
        html_footer();
        exit;
    }
    @file_put_contents($scriptPath . ".htaccess", $htaccess);
    header("Location: {$baseURL}");
    exit("Unknown Error. Please press refresh.");
}
开发者ID:jedediahfrey,项目名称:KISS-PHP-Gallery,代码行数:30,代码来源:index.php


示例8: host_edit

function host_edit() {
	global $colors, $fields_host_edit, $reindex_types;

	display_output_messages();

	if (!empty($_GET["id"])) {
		$host = db_fetch_row("select * from host where id=" . $_GET["id"]);
		$header_label = "[edit: " . $host["description"] . "]";
	}else{
		$header_label = "[new]";
	}

	if (!empty($host["id"])) {
		?>
		<table width="98%" align="center">
			<tr>
				<td class="textInfo" colspan="2">
					<?php print $host["description"];?> (<?php print $host["hostname"];?>)
				</td>
			</tr>
			<tr>
				<td class="textHeader">
					SNMP Information<br>

					<span style="font-size: 10px; font-weight: normal; font-family: monospace;">
					<?php
					if (($host["snmp_community"] == "") && ($host["snmp_username"] == "")) {
						print "<span style='color: #ab3f1e; font-weight: bold;'>SNMP not in use</span>\n";
					}else{
						$snmp_system = cacti_snmp_get($host["hostname"], $host["snmp_community"], ".1.3.6.1.2.1.1.1.0", $host["snmp_version"], $host["snmp_username"], $host["snmp_password"], $host["snmp_port"], $host["snmp_timeout"], SNMP_WEBUI);

						if ($snmp_system == "") {
							print "<span style='color: #ff0000; font-weight: bold;'>SNMP error</span>\n";
						}else{
							$snmp_uptime = cacti_snmp_get($host["hostname"], $host["snmp_community"], ".1.3.6.1.2.1.1.3.0", $host["snmp_version"], $host["snmp_username"], $host["snmp_password"], $host["snmp_port"], $host["snmp_timeout"], SNMP_WEBUI);
							$snmp_hostname = cacti_snmp_get($host["hostname"], $host["snmp_community"], ".1.3.6.1.2.1.1.5.0", $host["snmp_version"], $host["snmp_username"], $host["snmp_password"], $host["snmp_port"], $host["snmp_timeout"], SNMP_WEBUI);

							print "<strong>System:</strong> $snmp_system<br>\n";
							print "<strong>Uptime:</strong> $snmp_uptime<br>\n";
							print "<strong>Hostname:</strong> $snmp_hostname<br>\n";
						}
					}
					?>
					</span>
				</td>
				<td class="textInfo" valign="top">
					<span style="color: #c16921;">*</span><a href="graphs_new.php?host_id=<?php print $host["id"];?>">Create Graphs for this Host</a>
				</td>
			</tr>
		</table>
		<br>
		<?php
	}

	html_start_box("<strong>Devices</strong> $header_label", "98%", $colors["header"], "3", "center", "");

	/* preserve the host template id if passed in via a GET variable */
	if (!empty($_GET["host_template_id"])) {
		$fields_host_edit["host_template_id"]["value"] = $_GET["host_template_id"];
	}

	draw_edit_form(array(
		"config" => array("form_name" => "chk"),
		"fields" => inject_form_variables($fields_host_edit, (isset($host) ? $host : array()))
		));

	html_end_box();

	if ((isset($_GET["display_dq_details"])) && (isset($_SESSION["debug_log"]["data_query"]))) {
		html_start_box("<strong>Data Query Debug Information</strong>", "98%", $colors["header"], "3", "center", "");

		print "<tr><td><span style='font-family: monospace;'>" . debug_log_return("data_query") . "</span></td></tr>";

		html_end_box();
	}

	if (!empty($host["id"])) {
		html_start_box("<strong>Associated Graph Templates</strong>", "98%", $colors["header"], "3", "center", "");

		html_header(array("Graph Template Name", "Status"), 2);

		$selected_graph_templates = db_fetch_assoc("select
			graph_templates.id,
			graph_templates.name
			from graph_templates,host_graph
			where graph_templates.id=host_graph.graph_template_id
			and host_graph.host_id=" . $_GET["id"] . "
			order by graph_templates.name");

		$available_graph_templates = db_fetch_assoc("SELECT
			graph_templates.id, graph_templates.name
			FROM snmp_query_graph RIGHT JOIN graph_templates
			ON snmp_query_graph.graph_template_id = graph_templates.id
			WHERE (((snmp_query_graph.name) Is Null)) ORDER BY graph_templates.name");

		$i = 0;
		if (sizeof($selected_graph_templates) > 0) {
		foreach ($selected_graph_templates as $item) {
			$i++;

//.........这里部分代码省略.........
开发者ID:songchin,项目名称:Cacti,代码行数:101,代码来源:host.php


示例9: dirname

    WideImage is free software; you can redistribute it and/or modify
    it under the terms of the GNU Lesser General Public License as published by
    the Free Software Foundation; either version 2.1 of the License, or
    (at your option) any later version.
		
    WideImage is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Lesser General Public License for more details.
		
    You should have received a copy of the GNU Lesser General Public License
    along with WideImage; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  **/
require_once dirname(__FILE__) . '/helpers/common.inc.php';
html_header('Get channels');
$chans = array('R' => false, 'G' => false, 'B' => false, 'A' => false);
foreach ($chans as $chan => $value) {
    $chans[$chan] = Request::getInt($chan, false);
}
?>

<form action="?" method="get">

<table>
	<tr>
		<td>
			channels:
<?php 
foreach ($chans as $chan => $value) {
    if ($value) {
开发者ID:kasperg,项目名称:symfony-tiny-mce-image-browser-plugin,代码行数:31,代码来源:getChannels_index.php


示例10: frameset

function frameset()
{
    global $path_info, $leftFrameWidth;
    if (!isset($leftFrameWidth)) {
        $leftFrameWidth = 300;
    }
    html_header();
    echo "\r\n    <frameset cols=\"" . $leftFrameWidth . ",*\" framespacing=\"0\">\r\n        <frameset rows=\"0,*\" framespacing=\"0\" frameborder=\"0\">\r\n            <frame src=\"" . $path_info["basename"] . "?frame=1\" name=frame1 border=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\">\r\n            <frame src=\"" . $path_info["basename"] . "?frame=2\" name=frame2 border=\"0\" marginwidth=\"0\" marginheight=\"0\">\r\n        </frameset>\r\n        <frame src=\"" . $path_info["basename"] . "?frame=3\" name=frame3 border=\"0\" marginwidth=\"0\" marginheight=\"0\">\r\n    </frameset>\r\n    </html>";
}
开发者ID:Kavir91,项目名称:Convocatoria,代码行数:9,代码来源:index.php


示例11: edit

function edit ($file) {
	global $self, $directory, $editcols, $editrows, $apache, $htpasswd, $htaccess;
	html_header();
	echo '<h2 style="margin-bottom: 3pt">' . html($file) . '</h2>
<form action="' . $self . '?tool=Files" method="post">
<table class="dialog">
<tr>
<td class="dialog">
	<textarea name="content" cols="' . $editcols . '" rows="' . $editrows . '" WRAP="off">';
	if (array_key_exists('content', $_POST)) {
		echo $_POST['content'];
	} else {
		$f = fopen($file, 'r');
		while (!feof($f)) {
			echo html(fread($f, 8192));
		}
		fclose($f);
	}
	if (!empty($_POST['user'])) {
		echo "\n" . $_POST['user'] . ':' . crypt($_POST['password']);
	}
	if (!empty($_POST['basic_auth'])) {
		if ($win) {
			$authfile = str_replace('\\', '/', $directory) . $htpasswd;
		} else {
			$authfile = $directory . $htpasswd;
		}
		echo "\nAuthType Basic\nAuthName &quot;Restricted Directory&quot;\n";
		echo 'AuthUserFile &quot;' . html($authfile) . "&quot;\n";
		echo 'Require valid-user';
	}
	echo '</textarea>
	<hr />
';
	if ($apache && basename($file) == $htpasswd) {
		echo '
	' . word('user') . ': <input type="text" name="user" />
	' . word('password') . ': <input type="password" name="password" />
	<input type="submit" value="' . word('add') . '" />
	<hr />
';
	}
	if ($apache && basename($file) == $htaccess) {
		echo '
	<input type="submit" name="basic_auth" value="' . word('add_basic_auth') . '" />
	<hr />
';
	}
	echo '
	<input type="hidden" name="action" value="edit" />
	<input type="hidden" name="file" value="' . html($file) . '" />
	<input type="hidden" name="dir" value="' . html($directory) . '" />
	<input type="reset" value="' . word('reset') . '" id="red_button" />
	<input type="submit" name="save" value="' . word('save') . '" id="green_button" style="margin-left: 50px" />
</td>
</tr>
</table>
<p><a href="' . $self . '?tool=Files&dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>
</form>
';
	html_footer();
}
开发者ID:plirof,项目名称:php-exploit-scripts,代码行数:62,代码来源:g31.php


示例12: handle_basic_auth

    $author = handle_basic_auth();
} elseif ($authmethod === 'htpasswd') {
    $author = handle_htpasswd_auth();
}
@ob_end_clean();
flush();
$dir = $repos[$defaultrepo];
if (!chdir($dir)) {
    exit('directory not found: ' . $dir);
}
$_handles = array();
$_handlecount = 0;
$md5_empty_string = 'd41d8cd98f00b204e9800998ecf8427e';
$sha1_empty_string = 'da39a3ee5e6b4b0d3255bfef95601890afd80709';
$somethingstaged = false;
echo html_header();
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    if (isset($_POST['commit_message'])) {
        $commit_message = $_POST['commit_message'];
    } else {
        $commit_message = '';
    }
    debug($_POST);
    if (isset($_POST['change_staged']) && $_POST['change_staged'] && isset($_POST['statushash']) && $_POST['statushash']) {
        handle_change_staged_req();
    } elseif (isset($_POST['commit']) && $_POST['commit'] && isset($_POST['statushash']) && $_POST['statushash'] && isset($_POST['commit_message']) && $_POST['commit_message'] != '') {
        handle_commit_req();
    } elseif (isset($_POST['refresh']) && $_POST['refresh']) {
        handle_refresh_req();
    } elseif (isset($_POST['pull']) && $_POST['pull']) {
        handle_pull_req();
开发者ID:jasonkung0211,项目名称:git-webcommit,代码行数:31,代码来源:git-webcommit.php


示例13: package_edit

function package_edit() {
	$_package_id = get_get_var_number("id");

	if (empty($_package_id)) {
		$header_label = "[new]";
	}else{
		$package = api_package_get($_package_id);

		/* get a list of each graph template that is associated with this package */
		$graph_templates = api_package_graph_template_list($_package_id);

		/* get a list of all of the metadata associated with a particular package */
		$metadata_items = api_package_metadata_list($_package_id);

		$header_label = "[edit: " . $package["name"] . "]";
	}

	form_start("packages.php", "form_package");

	/* ==================== Box: Template Packages ==================== */

	html_start_box("<strong>" . _("Template Packages") . "</strong> $header_label");

	_package_field__name("name", (isset($package["name"]) ? $package["name"] : ""), "0");
	_package_field__description("description", (isset($package["description"]) ? $package["description"] : ""), "0");
	_package_field__description_install("description_install", (isset($package["description_install"]) ? $package["description_install"] : ""), "0");
	_package_field__category("category", (isset($package["category"]) ? $package["category"] : ""), "0");
	_package_field__subcategory("subcategory", (isset($package["subcategory"]) ? $package["subcategory"] : ""), "0");
	_package_field__vendor("vendor", (isset($package["vendor"]) ? $package["vendor"] : ""), "0");
	_package_field__model("model", (isset($package["model"]) ? $package["model"] : ""), "0");
	_package_field__author_hdr();
	_package_field__author_type("author_type", (isset($package) ? "existing" : "new"), "0");
	_package_author_field__name("author_name", (isset($package["author_name"]) ? $package["author_name"] : ""), "0");
	_package_author_field__email("author_email", (isset($package["author_email"]) ? $package["author_email"] : ""), "0");
	_package_author_field__user_forum("author_user_forum", (isset($package["author_user_forum"]) ? $package["author_user_forum"] : ""), "0");
	_package_author_field__user_repository("author_user_repository", (isset($package["author_user_repository"]) ? $package["author_user_repository"] : ""), "0");
	_package_author_type_js();

	html_end_box();

	if (!empty($_package_id)) {
		/* ==================== Box: Associated Graph Templates ==================== */

		html_start_box("<strong>" . _("Associated Graph Templates") . "</strong>");
		html_header(array(_("Template Title")), 2);

		if (sizeof($graph_templates) > 0) {
			foreach ($graph_templates as $graph_template) {
				?>
				<tr class="item">
					<td style="padding: 4px;">
						<?php echo $graph_template["template_name"];?>
					</td>
					<td align="right" style="padding: 4px;">
						<a href="packages.php?action=remove_graph_template&id=<?php echo $_package_id;?>&graph_template_id=<?php echo $graph_template["id"];?>"><img src="<?php echo html_get_theme_images_path("delete_icon_large.gif");?>" alt="<?php echo _("Delete Graph Template Association");?>" border="0" align="absmiddle"></a>
					</td>
				</tr>
				<?php
			}
		}else{
			?>
			<tr class="empty">
				<td colspan="2">
					No graph templates have been associated with this package.
				</td>
			</tr>
			<?php
		}

		?>
		<tr>
			<td style="border-top: 1px solid #b5b5b5; padding: 1px;" colspan="2">
				<table width="100%" cellpadding="2" cellspacing="0">
					<tr>
						<td>
							Add graph template:
							<?php form_dropdown("assoc_graph_template_id", api_graph_template_list(), "template_name", "id", "", "", "");?>
						</td>
						<td align="right">
							&nbsp;<input type="image" src="<?php echo html_get_theme_images_path('button_add.gif');?>" alt="<?php echo _('Add');?>" name="assoc_graph_template_add" align="absmiddle">
						</td>
					</tr>
				</table>
			</td>
		</tr>

		<?php

		html_end_box();

		/* ==================== Box: Associated Meta Data ==================== */

		html_start_box("<strong>" . _("Associated Meta Data") . "</strong>", "packages.php?action=edit_metadata&package_id=$_package_id");
		html_header(array(_("Name"), _("Type")), 2);

		if (sizeof($metadata_items) > 0) {
			$metadata_types = api_package_metadata_type_list();

			foreach ($metadata_items as $metadata_item) {
				?>
//.........这里部分代码省略.........
开发者ID:songchin,项目名称:Cacti,代码行数:101,代码来源:packages.php


示例14: printoutPreview

 function printoutPreview () {
     if ($this->config->getValue("Main", "wholesite"))
         echo html_header($this->config);
     
     if (!$language = $this->config->getValue("Main", "language"))
         $language = "de_DE";
     init_i18n($language);
     
     include($GLOBALS["RELATIVE_PATH_EXTERN"]
             . "/modules/views/persondetails_preview.inc.php");
     
     if ($this->config->getValue("Main", "wholesite"))
         echo html_footer();
 }
开发者ID:ratbird,项目名称:hope,代码行数:14,代码来源:ExternModulePersondetails.class.php


示例15: html_header

<?php

require_once "common-multi.php";
html_header("CSV: Generador de personal a honorarios");
?>


La siguiente planilla le permitir&aacute; elaborar el listado de la dotaci&oacute;n de personal de su organizaci&oacute;n.
<br/><br/>
Art. 7-d: Personal de Honorarios, con sus correspondientes remuneraciones.
<br/><br/>
Paso 1: Descargue la planilla en alguno de los siguientes formatos :
<ul>
 <li><a href="honorarios.xls" target="_NEW">honorarios.xls</a>,
 formato Microsoft Excel 97/XP.</li>
 <li><a href="honorarios.ods" target="_NEW">honorarios.ods</a>,
 formato OpenOffice Calc 2.0.</li>
 <li><a href="honorarios.csv" target="_NEW">honorarios.csv</a>,
 formato CSV delimitado por punto y comas (;).</li>
</ul>

Paso 2: Complete la planilla con los datos solicitados en cada columna,
de acuerdo a lo dispuesto en el art&iacute;culo 7-d de la ley N&deg; 20.285.
<br/><br/>
Paso 3: Guarde su planilla Microsoft Excel u OpenOffice Calc, en formato CSV.
Los archivos CSV (del ingl&eacute;s <i>comma separated values</i>) son un tipo
de documento sencillo para representar datos en forma de tabla.
<br/><br/>
Paso 4: Presione Examinar y seleccione el archivo CSV.
<br/><br/>
Paso 5: Presione "Procesar" para acceder a los descargables de "Dotaci&oacute;n de Personal a Honorarios". 
开发者ID:e-gob,项目名称:GobiernoTransparente,代码行数:31,代码来源:honorarios.php


示例16: snmpagent_utilities_run_eventlog


//.........这里部分代码省略.........
" onChange='applyFilter()'>
						</td>
						<td>
							Rows:
						</td>
						<td>
							<select id='rows' name="rows" onChange="applyFilter()">
								<option value="-1"<?php 
    if (get_request_var_request("rows") == "-1") {
        ?>
 selected<?php 
    }
    ?>
>Default</option>
								<?php 
    if (sizeof($item_rows) > 0) {
        foreach ($item_rows as $key => $value) {
            print "<option value='" . $key . "'";
            if (get_request_var_request("rows") == $key) {
                print " selected";
            }
            print ">" . htmlspecialchars($value) . "</option>\n";
        }
    }
    ?>
							</select>
						</td>
						<td>
							<input type="submit" id="refresh" name="go" value="Go" title="Set/Refresh Filters">
							<input type="submit" id="clear" name="clear_x" value="Clear" title="Clear Filters">
							<input type="submit" id="purge" name="purge_x" value="Purge" title="Purge Notification Log">
						</td>
					</tr>
				</table>
				<input type='hidden' id='page' name='page' value='<?php 
    print $_REQUEST['page'];
    ?>
'>
			</form>
		</td>
	</tr>
	<?php 
    html_end_box();
    $sql_where = " 1";
    /* filter by severity */
    if (get_request_var_request("receiver") != "-1") {
        $sql_where .= " AND snmpagent_notifications_log.manager_id='" . get_request_var_request("receiver") . "'";
    }
    /* filter by severity */
    if (get_request_var_request("severity") == "-1") {
        /* Show all items */
    } elseif (!empty($_REQUEST["severity"])) {
        $sql_where .= " AND snmpagent_notifications_log.severity='" . get_request_var_request("severity") . "'";
    }
    /* filter by search string */
    if (get_request_var_request("filter") != "") {
        $sql_where .= " AND (`varbinds` LIKE '%%" . get_request_var_request("filter") . "%%')";
    }
    $sql_where .= ' ORDER by `time` DESC';
    $sql_query = "SELECT snmpagent_notifications_log.*, snmpagent_managers.hostname, snmpagent_cache.description FROM snmpagent_notifications_log\n\t\t\t\t\t INNER JOIN snmpagent_managers ON snmpagent_managers.id = snmpagent_notifications_log.manager_id\n\t\t\t\t\t LEFT JOIN snmpagent_cache ON snmpagent_cache.name = snmpagent_notifications_log.notification\n\t\t\t\t\t WHERE {$sql_where} LIMIT " . read_config_option("num_rows_data_source") * (get_request_var_request("page") - 1) . "," . read_config_option("num_rows_data_source");
    /* print checkbox form for validation */
    print "<form name='chk' method='post' action='managers.php'>\n";
    html_start_box("", "100%", "", "3", "center", "");
    $total_rows = db_fetch_cell("SELECT COUNT(*) FROM snmpagent_notifications_log WHERE {$sql_where}");
    $logs = db_fetch_assoc($sql_query);
    /* generate page list */
    $nav = html_nav_bar("utilities.php?action=view_snmpagent_events&severity=" . get_request_var_request("severity") . "&receiver=" . get_request_var_request("receiver") . "&filter=" . get_request_var_request("filter"), MAX_DISPLAY_PAGES, get_request_var_request("page"), get_request_var_request("rows"), $total_rows, 11, '', 'page', 'main');
    print $nav;
    html_header(array(" ", "Time", "Receiver", "Notification", "Varbinds"));
    if (sizeof($logs) > 0) {
        foreach ($logs as $item) {
            $varbinds = strlen(get_request_var_request("filter")) ? preg_replace("/(" . preg_quote(get_request_var_request("filter"), "/") . ")/i", "<span style='background-color: #F8D93D;'>\\1</span>", $item["varbinds"]) : $item["varbinds"];
            form_alternate_row('line' . $item["id"], false);
            print "<td title='Severity Level: " . $severity_levels[$item["severity"]] . "' style='width:10px;background-color: " . $severity_colors[$item["severity"]] . ";border-top:1px solid white;border-bottom:1px solid white;'></td>";
            print "<td style='white-space: nowrap;'>" . date("Y/m/d H:i:s", $item["time"]) . "</td>";
            print "<td>" . $item["hostname"] . "</td>";
            if ($item["description"]) {
                print '<td><a href="#" title="<div class=\'header\'>' . $item["notification"] . '</div><div class=\'content preformatted\'>' . $item["description"] . '</div>" class="tooltip">' . $item["notification"] . '</a></td>';
            } else {
                print "<td>{$item["notification"]}</td>";
            }
            print "<td>{$varbinds}</td>";
            form_end_row();
        }
        print $nav;
    } else {
        print "<tr><td><em>No SNMP Notification Log Entries</em></td></tr>";
    }
    html_end_box();
    ?>

	<script language="javascript" type="text/javascript" >
		$('.tooltip').tooltip({
			track: true,
			position: { collision: "flipfit" },
			content: function() { return $(this).attr('title'); }
		});
	</script>
	<?php 
}
开发者ID:MrWnn,项目名称:cacti,代码行数:101,代码来源:utilities.php


示例17: start_update

function start_update()
{
    // The updater
    html_header("Coppermine - Upgrade");
    html_logo();
    test_fs();
    if ($errors != '') {
        html_prereq_errors($errors);
    } else {
        test_sql_connection();
        if ($errors == '') {
            update_tables();
            update_system_thumbs();
        } else {
            html_error($errors);
        }
        if ($errors == '') {
            html_install_success($notes);
            session_destroy();
        } else {
            html_error($errors);
        }
    }
    html_footer();
}
开发者ID:phill104,项目名称:branches,代码行数:25,代码来源:update.php


示例18: html_header

        // add end of table
        $render .= '		
        <table border="0" cellspacing="2" cellpadding="2" width="700">
          <tr> 
            <td align="left">Page: ' . $data['current'] . ' of ' . $data['numpages'] . '</td>
            <td align="right" nowrap>' . $prev . ' &nbsp; ' . $next . '</td>
          </tr>
        </table>
';
    }
    echo html_header("Search Results");
    echo '<div align="center">
<table>' . $render . '</table>
</div>';
} else {
    echo html_header("Client Search");
    ?>
<div align="center">
<form name="form" method="GET">
    <table width="650" border="0" cellpadding="5" cellspacing="3">
      <tr> 
        <td class="pageTitle">Sales Client Search</td>
        <td align="right"><a href="index.php">Main Menu</a></td>
      </tr>
    </table>
    <table width="650" border="0" cellpadding="4" cellspacing="2">
      <tr> 
        <td colspan="4" class="head">Search Criteria</td>
      </tr>
      <tr> 
        <td align="right" class="greyText">Price</td>
开发者ID:jankichaudhari,项目名称:yii-site,代码行数:31,代码来源:client_search2006.php


示例19: displaydir

            echo " <input type=\"hidden\" name=\"id\" value=\"{$id}\" />\n";
            echo " <input type=\"hidden\" name=\"wdir\" value=\"{$wdir}\" />\n";
            echo " <input type=\"hidden\" name=\"action\" value=\"cancel\" />\n";
            echo " <input type=\"hidden\" name=\"sesskey\" value=\"{$USER->sesskey}\" />\n";
            echo " <input type=\"submit\" value=\"{$strok}\" />\n";
            echo "</form>\n";
            echo "</center>\n";
        } else {
            displaydir($wdir);
        }
        html_footer();
        break;
    case "cancel":
        clearfilelist();
    default:
        html_header($course, $wdir);
        displaydir($wdir);
        html_footer();
        break;
}
/// FILE FUNCTIONS ///////////////////////////////////////////////////////////
function setfilelist($VARS)
{
    global $USER;
    $USER->filelist = array();
    $USER->fileop = "";
    $count = 0;
    foreach ($VARS as $key => $val) {
        if (substr($key, 0, 4) == "file") {
            $count++;
            $val = rawurldecode($val);
开发者ID:r007,项目名称:PMoodle,代码行数:31,代码来源:coursefiles.php


示例20: js_includes

$login_required = TRUE;
$use_theme = 'Beta';
//TODO : Remove this when new UI is completely implemented.
include "includes/page.php";
global $path_prefix;
require_once $path_prefix . '/api/Category/Category.php';
require_once $path_prefix . '/ext/Image/Image.php';
require_once $path_prefix . '/ext/Audio/Audio.php';
require_once $path_prefix . '/ext/Video/Video.php';
require_once $path_prefix . '/ext/Album/Album.php';
// for query count
global $query_count_on_page;
$query_count_on_page = 0;
global $current_theme_path;
$parameter = js_includes("all");
html_header("Media Gallery - {$network_info->name}", $parameter);
if (!$_GET['uid']) {
    $uid = $_SESSION['user']['id'];
} else {
    $uid = $_GET['uid'];
}
/*  Check for the content author id */
if (!empty($_REQUEST["cid"])) {
    $cid = $_REQUEST["cid"];
    $params = array('action' => 'edit_content', 'uid' => $login_uid, 'cid' => $cid);
    if (!user_can($params)) {
        header("Location: {$base_url}/homepage.php?&msg=" . urlencode('Error: You are not authorized to access this page.'));
        exit;
    }
    // It will give the content type whether its an SB Content or a Blogpost
    $obj_content_type = Content::load_content($cid, $uid);
开发者ID:CivicCommons,项目名称:oldBellCaPA,代码行数:31,代码来源:edit_media.php



注:本文中的html_header函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP html_header_checkbox函数代码示例发布时间:2022-05-15
下一篇:
PHP html_head_end函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap