当前位置: 首页>>代码示例>>PHP>>正文


PHP html_start函数代码示例

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


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

示例1: session_start

 *
 * As a special exception, you have permission to link this program with the JpGraph library and distribute executables,
 * as long as you follow the requirements of the GNU GPL in regard to all of the software in the executable aside from
 * JpGraph.
 *
 * You should have received a copy of the GNU General Public License along with this program; if not, write to the Free
 * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
// Include of necessary functions
require_once __DIR__ . '/functions.php';
require_once __DIR__ . '/filter.inc';
// Authentication checking
session_start();
require __DIR__ . '/login.function.php';
// add the header information such as the logo, search, menu, ....
$filter = html_start("SpamAssassin Score Distribution", 0, false, true);
// File name
$filename = "" . CACHE_DIR . "/sa_score_dist.png." . time() . "";
$sql = "\n SELECT\n  ROUND(sascore) AS score,\n  COUNT(*) AS count\n FROM\n  maillog\n WHERE\n  spamwhitelisted=0\n" . $filter->CreateSQL() . "\n GROUP BY\n  score\n ORDER BY\n  score\n";
// Check permissions to see if apache can actually create the file
if (is_writable(CACHE_DIR)) {
    // JPGraph
    include_once "./lib/jpgraph/src/jpgraph.php";
    include_once "./lib/jpgraph/src/jpgraph_log.php";
    include_once "./lib/jpgraph/src/jpgraph_bar.php";
    include_once "./lib/jpgraph/src/jpgraph_line.php";
    // ##### AJOS1 NOTE #####
    // ### AjosNote - Must be 2 or more rows...
    // ##### AJOS1 NOTE #####
    $result = dbquery($sql);
    if (mysql_num_rows($result) <= 1) {
开发者ID:thctlo,项目名称:1.2.0,代码行数:31,代码来源:rep_sa_score_dist.php

示例2: validate_get

$pinstance = validate_get(GET('pi'), 'pinstance');
$type = validate_get(GET('t'), 'type');
$tinstance = validate_get(GET('ti'), 'tinstance');
$width = GET('x');
$heigth = GET('y');
$seconds = GET('s');
$requesthash = sha1(serialize($_GET));
$rediskey = "cache:grapher:detail:{$host}:{$plugin}:{$type}:{$tinstance}:{$seconds}";
$content = $redis->get($rediskey);
if ($content) {
    http_cache_etag();
    http_send_data($content);
    exit;
}
ob_start();
html_start();
if (isset($_GET["tz"])) {
    $tz = $_GET["tz"];
} else {
    $tz = "EEST";
}
printf('<h2><a href="%s">%s</a></h2>' . "\n", $CONFIG['weburl'] . 'host?h=' . htmlentities($host) . '&tz=' . $tz, $host);
$term = array('2 hours' => 3600 * 2, '8 hours' => 3600 * 8, 'day' => 86400, 'week' => 86400 * 7, 'month' => 86400 * 31, 'quarter' => 86400 * 31 * 3, 'year' => 86400 * 365);
$args = $_GET;
print "<ul>\n";
foreach ($term as $key => $s) {
    $args['s'] = $s;
    printf('<li><a href="%s%s">%s</a></li>' . "\n", $CONFIG['weburl'], build_url('detail', $args), $key);
}
print "</ul>\n";
$plugins = collectd_plugins($host);
开发者ID:4711,项目名称:status.futurice.com,代码行数:31,代码来源:detail.php

示例3: session_start

 *
 * As a special exception, you have permission to link this program with the JpGraph library and distribute executables,
 * as long as you follow the requirements of the GNU GPL in regard to all of the software in the executable aside from
 * JpGraph.
 *
 * You should have received a copy of the GNU General Public License along with this program; if not, write to the Free
 * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
// Include of necessary functions
require_once __DIR__ . '/functions.php';
require_once __DIR__ . '/filter.inc';
// Authentication checking
session_start();
require __DIR__ . '/login.function.php';
// add the header information such as the logo, search, menu, ....
$filter = html_start("MCP Score Distribution", 0, false, true);
// File name
$filename = "" . CACHE_DIR . "/mcp_score_dist.png." . time() . "";
$sql = "\n SELECT\n  ROUND(mcpsascore) AS score,\n  COUNT(*) AS count\n FROM\n  maillog\n WHERE\n  mcpwhitelisted=0\n" . $filter->CreateSQL() . "\n GROUP BY\n  score\n ORDER BY\n  score\n";
// Check permissions to see if apache can actually create the file
if (is_writable(CACHE_DIR)) {
    // JPGraph
    include_once "./lib/jpgraph/src/jpgraph.php";
    include_once "./lib/jpgraph/src/jpgraph_log.php";
    include_once "./lib/jpgraph/src/jpgraph_bar.php";
    include_once "./lib/jpgraph/src/jpgraph_line.php";
    ///////AJOS1 NOTE////////
    // AjosNote - Must be 2 or more rows...
    ///////AJOS1 NOTE////////
    $result = dbquery($sql);
    if (mysql_num_rows($result) <= 1) {
开发者ID:thctlo,项目名称:1.2.0,代码行数:31,代码来源:rep_mcp_score_dist.php

示例4: html_start

<?php

/*
*	Copyright VeryIDE 2009-2012
*	http://www.veryide.com/
*/
require '../../source/dialog/loader.php';
html_start("系统设置 - VeryIDE");
?>
    
	<?php 
require_once VI_ROOT . 'source/class/setting.php';
//检查权限
$func = 'system-system-set';
System::check_func($func, FALSE);
$do = getgpc('do');
if (!$do) {
    ob_end_clean();
    header("location:?do=global");
    exit;
}
$active = array('global', 'attach', 'mail');
if (in_array($do, $active)) {
    $_GalSet = new Setting(VI_ROOT . 'config/' . $do . '.php', VI_ROOT . 'config/' . $do . '.xml', $do);
    if ($_GET["action"] == "update" && !empty($_POST)) {
        //var_dump($_POST);
        //exit;
        if ($_GalSet->save('POST')) {
            //连接数据库
            System::connect();
            //写入日志
开发者ID:a195474368,项目名称:ejw,代码行数:31,代码来源:system.setting.php

示例5: session_start

    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/
// Include of necessary functions
require_once "./functions.php";
include "msre_table_functions.php";
// Authentication checking
session_start();
require 'login.function.php';
// Check to see if the user is an administrator
if ($_SESSION['user_type'] != 'A') {
    // If the user isn't an administrator send them back to the index page.
    header("Location: index.php");
    audit_log('Non-admin user attempted to view MailScanner Rule Editor Page');
} else {
    html_start('Ruleset Editor', "0", false, false);
    // ############
    // ### Main ###
    // ############
    // start a table
    echo "<table border=\"0\" class=\"mailwatch\" align=\"center\">\n";
    TRH(array("Choose a ruleset to edit:"));
    $ruleset_file = array();
    // open directory and read its contents
    if (is_dir(MSRE_RULESET_DIR)) {
        if ($dh = opendir(MSRE_RULESET_DIR)) {
            while ($file = readdir($dh)) {
                // if it's a ruleset (*.rules), add it to the array
                if (preg_match("/.+\\.rules\$/", $file)) {
                    array_push($ruleset_file, $file);
                }
开发者ID:rafaelbsd,项目名称:1.2.0,代码行数:31,代码来源:msre_index.php

示例6: session_start

 As a special exception, you have permission to link this program with the JpGraph library and
 distribute executables, as long as you follow the requirements of the GNU GPL in regard to all of the software
 in the executable aside from JpGraph.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/
// Include of necessary functions
require_once "./functions.php";
require_once "./filter.inc";
// Authentication checking
session_start();
require 'login.function.php';
// add the header information such as the logo, search, menu, ....
$filter = html_start("Top Mail Relays", 0, false, true);
// File name
$filename = "" . CACHE_DIR . "/top_mail_relays.png." . time() . "";
$sql = "\nSELECT\n clientip,\n count(*) AS count,\n sum(virusinfected) AS total_viruses,\n sum(isspam) AS total_spam,\n sum(size) AS size\nFROM\n maillog\nWHERE\n 1=1\n" . $filter->CreateSQL() . "\nGROUP BY\n clientip\nORDER BY\n count DESC\nLIMIT 10";
// Check permissions to see if apache can actually create the file
if (is_writable(CACHE_DIR)) {
    // JpGraph functions
    include_once "./lib/jpgraph/src/jpgraph.php";
    include_once "./lib/jpgraph/src/jpgraph_pie.php";
    include_once "./lib/jpgraph/src/jpgraph_pie3d.php";
    $result = dbquery($sql);
    if (!mysql_num_rows($result) > 0) {
        die("Error: no rows retrieved from database\n");
    }
    $relay_array = array();
    while ($row = mysql_fetch_object($result)) {
开发者ID:rafaelbsd,项目名称:1.2.0,代码行数:31,代码来源:rep_top_mail_relays.php

示例7: html_start

<?php

/*
*	Copyright VeryIDE 2009-2012
*	http://www.veryide.com/
*/
require '../../source/dialog/loader.php';
html_start("模块管理 - VeryIDE");
?>


	<?php 
//连接数据库
System::connect();
$action = getgpc('action');
$module = getgpc("module");
if ($action) {
    switch ($action) {
        //安装模块
        case "install":
            //检查权限
            $func = 'system-module-add';
            System::check_func($func, FALSE);
            $res = Module::install($module);
            switch ($res) {
                case 'permission':
                    echo '<div id="state" class="failure">抱歉!当前目录没有写权限(module/' . $module . ')</div>';
                    break;
                case 'locked':
                    echo '<div id="state" class="failure">抱歉!当前模块已安装(' . $module . ')</div>';
                    break;
开发者ID:a195474368,项目名称:ejw,代码行数:31,代码来源:module.control.php

示例8: require_session

<?php

require_once 'common.php';
require_once 'externals.php';
require_session();
html_start('Edit filters : ' . $_SESSION['filename'], 'prolog.css', 'javascript-always-save', 2, '');
if ($_SESSION['editerror']) {
    $error = htmlspecialchars($_SESSION['editerror']);
    echo "<p>An error occurred while editing the filters:</p>\n";
    echo "<pre>{$error}</pre>";
}
?>
<form action="new_annotations.php" method="post"
	  onsubmit="return submitAnnotations(this.form)">
<?php 
$filename = $_SESSION['filename'];
$annfile = $_SESSION['annfile'];
$tempdir = get_directory();
chdir($tempdir);
$file = fopen("{$tempdir}/{$filename}", "w");
fwrite($file, $_SESSION['plfile']);
fclose($file);
$file = fopen("{$tempdir}/{$filename}.ann", "w");
fwrite($file, $annfile);
fclose($file);
$output = show_annotated($filename);
if ($output[0] == 0) {
    $xml = $output[1];
    $_SESSION['annerror'] = '';
} else {
    $_SESSION['annerror'] = $output[1];
开发者ID:jfmc,项目名称:logen,代码行数:31,代码来源:edit_filters.php

示例9: session_start

 If you do not wish to do so, delete this exception statement from your version.

 As a special exception, you have permission to link this program with the JpGraph library and
 distribute executables, as long as you follow the requirements of the GNU GPL in regard to all of the software
 in the executable aside from JpGraph.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/
//Require files
require_once './functions.php';
// Authentication verification and keep the session alive
session_start();
require './login.function.php';
html_start("GeoIP Database Update", 0, false, false);
if (!isset($_POST['run'])) {
    echo '<form method="POST" action="' . sanitizeInput($_SERVER['PHP_SELF']) . '">
	 <input type="hidden" name="run" value="true">
	 <table class="boxtable" width="100%">
	    <tr>
	        <td>
	            This utility is used to download the GeoIP database files (which are updated on the first Tuesday of each month) from <a href="http://dev.maxmind.com/geoip/legacy/geolite/" target="_maxmind">MaxMind</a> which is used to work out the country of origin for any given IP address and is displayed on the Message Detail page.<br><br>
	        </td>
	    </tr>
	    <tr>
	        <td align="center"><br><input type="SUBMIT" value="Run Now"><br><br></td>
	    </tr>
	 </table>
	 </form>' . "\n";
} else {
开发者ID:rafaelbsd,项目名称:1.2.0,代码行数:31,代码来源:geoip_update.php

示例10: session_start

 * If you do not wish to do so, delete this exception statement from your version.
 *
 * As a special exception, you have permission to link this program with the JpGraph library and distribute executables,
 * as long as you follow the requirements of the GNU GPL in regard to all of the software in the executable aside from
 * JpGraph.
 *
 * You should have received a copy of the GNU General Public License along with this program; if not, write to the Free
 * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
require_once __DIR__ . '/functions.php';
session_start();
require __DIR__ . '/login.function.php';
if ($_SESSION['user_type'] != 'A') {
    header("Location: index.php");
} else {
    html_start("Configuration");
    audit_log('Viewed MailScanner configuration');
    $conf_dir = get_conf_include_folder();
    $MailScanner_conf_file = '' . MS_CONFIG_DIR . 'MailScanner.conf';
    echo '<table border="0" cellpadding="1" cellspacing="1" class="maildetail" width="100%">';
    echo '<tr><th colspan="2">MailScanner Configuration</th></tr>';
    $array_output = array();
    $array_output1 = parse_conf_file($MailScanner_conf_file);
    $array_output2 = parse_conf_dir($conf_dir);
    if (is_array($array_output2)) {
        $array_output = array_merge($array_output1, $array_output2);
    } else {
        $array_output = $array_output1;
    }
    // Display the information from the configuration files
    foreach ($array_output as $out_key => $value) {
开发者ID:thctlo,项目名称:1.2.0,代码行数:31,代码来源:msconfig.php

示例11: session_start

 As a special exception, you have permission to link this program with the JpGraph library and
 distribute executables, as long as you follow the requirements of the GNU GPL in regard to all of the software
 in the executable aside from JpGraph.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/
// Include of necessary functions
require_once "./functions.php";
require_once "./filter.inc";
// Authentication checking
session_start();
require 'login.function.php';
// add the header information such as the logo, search, menu, ....
$filter = html_start("Top Senders by Quantity", 0, false, true);
// Set Date format
$date_format = "'" . DATE_FORMAT . "'";
$filename = "" . CACHE_DIR . "/top_senders_by_quantity.png" . time() . "";
$sql = "\n SELECT\n  from_address,\n  COUNT(*) as count,\n  SUM(size) as size\n FROM\n  maillog\n WHERE\n  from_address <> \"\"\t\t-- Exclude delivery receipts\n AND\n  from_address IS NOT NULL\t-- Exclude delivery receipts\n" . $filter->CreateSQL() . "\n GROUP BY\n  from_address\n ORDER BY\n  count DESC\n LIMIT 10\n";
// Check permissions to see if apache can actually create the file
if (is_writable(CACHE_DIR)) {
    // JPGraph
    include_once "./lib/jpgraph/src/jpgraph.php";
    include_once "./lib/jpgraph/src/jpgraph_pie.php";
    include_once "./lib/jpgraph/src/jpgraph_pie3d.php";
    $result = dbquery($sql);
    if (!mysql_num_rows($result) > 0) {
        die("Error: no rows retrieved from database\n");
    }
    while ($row = mysql_fetch_object($result)) {
开发者ID:rafaelbsd,项目名称:1.2.0,代码行数:31,代码来源:rep_top_senders_by_quantity.php

示例12: html_start

<?php

/*
*	Copyright VeryIDE 2009-2012
*	http://www.veryide.com/
*/
require '../../source/dialog/loader.php';
html_start("更新管理 - VeryIDE");
?>
    
	<?php 
//更新基准目录
$base = Database::direct('update');
$action = getgpc('action');
$update = getgpc("update");
//连接数据库
System::connect();
switch ($action) {
    case "update":
        //检查权限
        $func = 'system-update-add';
        System::check_func($func, FALSE);
        $res = Database::update($update);
        switch ($res) {
            case 'locked':
                echo '<div id="state" class="failure">抱歉!安装已经存在。更新于早前已经安装,并在使用中:<span class="text-key">' . $update . '</span></div>';
                break;
            case 'abort':
                echo '<div id="state" class="failure">抱歉!安装更新失败。以下是本错误信息详细报告:</div>';
                break;
            case 'success':
开发者ID:a195474368,项目名称:ejw,代码行数:31,代码来源:data.update.php

示例13: session_start

 * You must obey the GNU General Public License in all respects for all of the code used other than those files in the
 * PEAR library that are licensed under the PHP License. If you modify this program, you may extend this exception to
 * your version of the program, but you are not obligated to do so.
 * If you do not wish to do so, delete this exception statement from your version.
 *
 * As a special exception, you have permission to link this program with the JpGraph library and distribute executables,
 * as long as you follow the requirements of the GNU GPL in regard to all of the software in the executable aside from
 * JpGraph.
 *
 * You should have received a copy of the GNU General Public License along with this program; if not, write to the Free
 * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
require_once __DIR__ . '/functions.php';
session_start();
require __DIR__ . '/login.function.php';
html_start("Quarantine Viewer", 0, false, false);
if (!isset($_GET['dir'])) {
    // Get the top-level list
    if (QUARANTINE_USE_FLAG) {
        // Don't use the database any more - it's too slow on big datasets
        $dates = return_quarantine_dates();
        echo '<table class="mail" cellspacing="2" align="center">' . "\n";
        echo '<tr><th colspan=2>' . __('folder08') . '</th></tr>' . "\n";
        foreach ($dates as $date) {
            $sql = "SELECT id FROM maillog WHERE " . $_SESSION['global_filter'] . " AND date='{$date}' AND quarantined=1";
            $result = dbquery($sql);
            $rowcnt = mysql_num_rows($result);
            $rowstr = "  ----------";
            if ($rowcnt > 0) {
                $rowstr = sprintf("  %02d " . __('items08'), $rowcnt);
            }
开发者ID:thctlo,项目名称:1.2.0,代码行数:31,代码来源:quarantine.php

示例14: session_start

*/
// Include of necessary functions
require_once "./functions.php";
// Authentication checking
session_start();
require 'login.function.php';
// Check to see if the user is an administrator
if ($_SESSION['user_type'] != 'A') {
    // If the user isn't an administrator send them back to the index page.
    header("Location: index.php");
    audit_log('Non-admin user attempted to view MailScanner Rule Editor Page');
} else {
    // add the header information such as the logo, search, menu, ....
    $short_filename = basename(sanitizeInput($_GET["file"]));
    $pageheader = "Edit MailScanner Ruleset " . $short_filename;
    $filter = html_start($pageheader, 0, false, false);
    // ############################
    // ### Includes and whatnot ###
    // ############################
    include "msre_table_functions.php";
    // ###############################################################
    // ### Config Vars (eventually these will be in a config file) ###
    // ###############################################################
    //ruleset keywords are the key words that you can use in a ruleset.  This value is used to populate the dropdown boxen.
    $CONF_ruleset_keyword = array("From:", "To:", "FromOrTo:", "FromAndTo:", "Virus:");
    define('MSRE_COLUMNS', 6);
    // ############
    // ### Main ###
    // ############
    // get the filename and put it into some easier to read variables
    $full_filename = MSRE_RULESET_DIR . "/" . $short_filename;
开发者ID:rafaelbsd,项目名称:1.2.0,代码行数:31,代码来源:msre_edit.php

示例15: session_start

 As a special exception, you have permission to link this program with the JpGraph library and
 distribute executables, as long as you follow the requirements of the GNU GPL in regard to all of the software
 in the executable aside from JpGraph.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/
// Include of necessary functions
require_once "./functions.php";
require_once "./filter.inc";
// Authentication checking
session_start();
require 'login.function.php';
// add the header information such as the logo, search, menu, ....
$filter = html_start("Top Recipients by Quantity", 0, false, true);
// File name
$filename = "" . CACHE_DIR . "/top_recipients_by_quantity.png." . time() . "";
$sql = "\n SELECT\n  to_address,\n  COUNT(*) as count,\n  SUM(size) as size\n FROM\n  maillog\n WHERE\n  from_address <> \"\"\t\t-- Exclude delivery receipts\n AND\n  from_address IS NOT NULL\t-- Exclude delivery receipts\n" . $filter->CreateSQL() . "\n GROUP BY\n  to_address\n ORDER BY\n  count DESC\n LIMIT 10\n";
// Check permissions to see if apache can actually create the file
if (is_writable(CACHE_DIR)) {
    // JPGraph
    include_once "./lib/jpgraph/src/jpgraph.php";
    include_once "./lib/jpgraph/src/jpgraph_pie.php";
    include_once "./lib/jpgraph/src/jpgraph_pie3d.php";
    $result = dbquery($sql);
    if (!mysql_num_rows($result) > 0) {
        die("Error: no rows retrieved from database\n");
    }
    while ($row = mysql_fetch_object($result)) {
        $data[] = $row->count;
开发者ID:rafaelbsd,项目名称:1.2.0,代码行数:31,代码来源:rep_top_recipients_by_quantity.php


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