當前位置: 首頁>>代碼示例>>PHP>>正文


PHP msgbox函數代碼示例

本文整理匯總了PHP中msgbox函數的典型用法代碼示例。如果您正苦於以下問題:PHP msgbox函數的具體用法?PHP msgbox怎麽用?PHP msgbox使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了msgbox函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: showDialog

		/** Shows the dialog with the GtkCalendar()-object. */
		function showDialog(){
			$date_unix = msgbox(gtext("Choose date"), $this->date_unix, "date");
			if ($date_unix){
				$this->date_unix = $date_unix;
				$this->entry->set_text(date("d-m-Y", $date_unix));
				$this->eventm->callEvent("changed", $this->date_unix);
				$this->eventm->callEVent("changed-manually", $this->date_unix);
			}
		}
開發者ID:kaspernj,項目名稱:knjphpfw,代碼行數:10,代碼來源:class_gtk2_entrydate.php

示例2: load

 public static function load()
 {
     $msg_ajax = "Vous n'êtes pas autorisé(e) à accéder à cette application , redirection vers acceuil.... \\AJAX";
     $msg_app = "Vous n'êtes pas autorisé(e) à accéder à cette application , redirection vers acceuil.... \\APP";
     $msg_file = "Vous n'êtes pas autorisé(e) à accéder à cette application , redirection vers acceuil.... \\FILE";
     $msg_perm = "Vous n'êtes pas autorisé(e) à accéder à cette application , redirection vers acceuil.... \\PERMISSION_USER";
     $msg_sess = "Vous n'êtes pas autorisé(e) à accéder à cette application , redirection vers acceuil.... \\SESSION_USER";
     //Check if is Ajax request
     if (empty($_SERVER['HTTP_X_REQUESTED_WITH']) && tg('_tsk') !== 'shopdf') {
         exit(msgbox($msg_ajax, 0, './', 5));
     }
     global $db;
     Cookie::auto_lastexec('time');
     Cookie::auto_logout('time', 600);
     //Cookie::session_autoclosed();
     //Start check APP
     if (tg('_tsk') == '0') {
         exit("3#{$msg_app}");
     }
     $app_id = tg('_tsk');
     if (!$db->Query("SELECT * FROM task where  app='" . $app_id . "' ")) {
         $db->Kill($db->Error());
     }
     if ($db->RowCount() == 0) {
         exit("3#{$msg_app}");
     }
     $array = $db->RowArray();
     $appc_idc = $array['id'];
     $needsession = $array['session'];
     $app_rep = $array['rep'];
     $app_file = $array['file'];
     $array_godapp = array(1, 2, 3, 4, 5, 6, 11, 21, 43, 49, 56, 57, 58, 59, 70, 130, 138, 157);
     if ($needsession == 1 && !isset($_SESSION['userid'])) {
         exit("3#{$msg_sess}");
     }
     if (!in_array($appc_idc, $array_godapp)) {
         $sql = "SELECT *  FROM permission_users where perm=1 and  appid=" . $appc_idc . " and userid=" . $_SESSION['userid'];
         if (!$db->Query($sql)) {
             $db->Kill($db->Error());
         }
         if ($db->RowCount() <= 0) {
             exit("3#{$msg_perm}");
         }
     }
     if (!file_exists(CONTROLLER_REP . $app_rep . SLASH . $app_file . '_c.php')) {
         exit("3#{$msg_file}");
     }
     define('ACTIV_APP', $array['dscrip']);
     define('MODUL_APP', $array['modul']);
     define('APP_ID', $array['id']);
     require_once CONTROLLER_REP . SLASH . $app_rep . SLASH . $app_file . '_c.php';
 }
開發者ID:ATS001,項目名稱:PRSIT,代碼行數:52,代碼來源:ajax.class.php

示例3: profileload

function profileload()
{
    $path = ENGINE_DIR . '/data/xfields.txt';
    $filecontents = file($path);
    if (!is_array($filecontents)) {
        msgbox('Информация', 'Невозможно загрузить файл', 'javascript:history.go(-1)');
        exit;
    }
    foreach ($filecontents as $name => $value) {
        $filecontents[$name] = explode("|", trim($value));
        foreach ($filecontents[$name] as $name2 => $value2) {
            $value2 = str_replace("&#124;", "|", $value2);
            $value2 = str_replace("__NEWL__", "\r\n", $value2);
            $filecontents[$name][$name2] = $value2;
        }
    }
    return $filecontents;
}
開發者ID:BGCX067,項目名稱:facestor-svn-to-git,代碼行數:18,代碼來源:xfields.php

示例4: trim

            $name = trim(stripslashes($name));
            $name = htmlspecialchars($name, ENT_QUOTES);
            $name = preg_replace($find, $replace, $name);
        }
        $value = str_replace("\$", "&#036;", $value);
        $value = str_replace("{", "&#123;", $value);
        $value = str_replace("}", "&#125;", $value);
        $name = str_replace("\$", "&#036;", $name);
        $name = str_replace("{", "&#123;", $name);
        $name = str_replace("}", "&#125;", $name);
        $value = $db->safesql($value);
        fwrite($handler, "'{$name}' => \"{$value}\",\n\n");
    }
    fwrite($handler, ");\n\n?>");
    fclose($handler);
    msgbox('Настройки сохранены', 'Настройки системы были успешно сохранены!', '?mod=system');
} else {
    echoheader();
    echohtmlstart('Общие настройки');
    //Чтение всех шаблон в папке "templates"
    $root = './templates/';
    $root_dir = scandir($root);
    foreach ($root_dir as $templates) {
        if ($templates != '.' and $templates != '..' and $templates != '.htaccess') {
            $for_select .= str_replace('value="' . $config['temp'] . '"', 'value="' . $config['temp'] . '" selected', '<option value="' . $templates . '">' . $templates . '</option>');
        }
    }
    //Чтение всех языков
    $root_dir2 = scandir('./lang/');
    foreach ($root_dir2 as $lang) {
        if ($lang != '.' and $lang != '..' and $lang != '.htaccess') {
開發者ID:BGCX067,項目名稱:facestor-svn-to-git,代碼行數:31,代碼來源:system.php

示例5: navigation

                                $tpl->set('[owner]', '');
                                $tpl->set('[/owner]', '');
                            } else {
                                $tpl->set_block("'\\[owner\\](.*?)\\[/owner\\]'si", "");
                            }
                            if ($row['friend_id'] == $user_info['user_id']) {
                                $tpl->set_block("'\\[viewer\\](.*?)\\[/viewer\\]'si", "");
                            } else {
                                $tpl->set('[viewer]', '');
                                $tpl->set('[/viewer]', '');
                            }
                            $tpl->compile('content');
                        }
                        navigation($gcount, $friends_sql['user_friends_num'], $config['home_url'] . 'friends/' . $get_user_id . '/page/');
                    } else {
                        msgbox('', $lang['no_requests'], 'info_2');
                    }
                } else {
                    msgbox('', $lang['no_requests'], 'info_2');
                }
            } else {
                $user_speedbar = $lang['error'];
                msgbox('', $lang['no_notes'], 'info');
            }
    }
    $db->free();
    $tpl->clear();
} else {
    $user_speedbar = 'Информация';
    msgbox('', $lang['not_logged'], 'info');
}
開發者ID:BGCX067,項目名稱:facestor-svn-to-git,代碼行數:31,代碼來源:friends.php

示例6: die

/***************************************************************************\
| Sypex Dumper Lite          version 1.0.8b                                 |
| (c)2003-2006 zapimir       zapimir@zapimir.net       http://sypex.net/    |
| (c)2005-2006 BINOVATOR     info@sypex.net                                 |
|---------------------------------------------------------------------------|
|     created: 2003.09.02 19:07              modified: 2006.10.27 03:30     |
|---------------------------------------------------------------------------|
\***************************************************************************/
if (!defined('MOZG')) {
    die('Hacking attempt!');
}
header('Content-type: text/html; charset=windows-1251');
$lang = array('dumper_1' => "Бэкап БД успешно создан в папке /backup/", 'dumper_2' => "Создается резервная копия БД", 'dumper_3' => "ОШИБКА! Не указана база данных!", 'dumper_4' => "Не удается выбрать базу данных.<br />", 'dumper_5' => "Создание файла с резервной копией БД:", 'dumper_6' => "Не удается изменить кодировку соединения.<br />", 'dumper_7' => "Установлена кодировка соединения", 'dumper_8' => "Кодировка соединения и таблицы не совпадает:", 'dumper_9' => "Таблица", 'dumper_10' => "соединение", 'dumper_11' => "Обработка таблицы", 'dumper_12' => "Резервная копия БД", 'dumper_13' => "создана.", 'dumper_14' => "Размер БД:", 'dumper_15' => "Размер файла:", 'dumper_16' => "Таблиц обработано:", 'dumper_17' => "Строк обработано:", 'dumper_18' => "Восстановление БД из резервной копии", 'dumper_19' => "ОШИБКА! Не указана база данных!", 'dumper_20' => "Подключение к БД", 'dumper_21' => "ОШИБКА! Файл не найден!", 'dumper_22' => "Чтение файла", 'dumper_23' => "Неправильный запрос.", 'dumper_24' => "БД восстановлена из резервной копии.", 'dumper_25' => "Дата создания копии:", 'dumper_26' => "Запросов к БД:", 'dumper_27' => "Таблиц создано:", 'dumper_28' => "Строк добавлено:", 'dumper_29' => "Статус таблицы:", 'dumper_30' => "Общий статус:", 'dumper_31' => "Возникла ошибка!");
if ($user_info['user_group'] != 1) {
    msgbox("error", 'error', 'error');
}
ob_end_flush();
define('PATH', ROOT_DIR . '/backup/');
define('URL', 'backup/');
define('TIME_LIMIT', 600);
define('LIMIT', 1);
define('DBNAMES', DBNAME);
define('DBNUSER', DBUSER);
define('DBPREFIX', PREFIX);
// Кодировка соединения с MySQL
// auto - автоматический выбор (устанавливается кодировка таблицы), cp1251 - windows-1251, и т.п.
define('CHARSET', 'auto');
// Кодировка соединения с MySQL при восстановлении
// На случай переноса со старых версий MySQL (до 4.1), у которых не указана кодировка таблиц в дампе
// При добавлении 'forced->', к примеру 'forced->cp1251', кодировка таблиц при восстановлении будет принудительно заменена на cp1251
開發者ID:BGCX067,項目名稱:facestor-svn-to-git,代碼行數:30,代碼來源:dumper.php

示例7: elseif

            $tpl->set('{author-id}', $row['auser_id']);
            $tpl->compile('content');
        }
    } elseif ($type == 6) {
        $tpl->load_template('search/result_groups.tpl');
        foreach ($sql_ as $row) {
            if ($row['photo']) {
                $tpl->set('{ava}', '/uploads/groups/' . $row['id'] . '/100_' . $row['photo']);
            } else {
                $tpl->set('{ava}', '{theme}/images/no_ava_groups_100.gif');
            }
            $tpl->set('{public-id}', $row['id']);
            $tpl->set('{name}', stripslashes($row['title']));
            $tpl->set('{note-id}', $row['id']);
            $tpl->set('{traf}', $row['traf'] . ' ' . gram_record($row['traf'], 'groups_users'));
            if ($row['adres']) {
                $tpl->set('{adres}', $row['adres']);
            } else {
                $tpl->set('{adres}', 'public' . $row['id']);
            }
            $tpl->compile('content');
        }
    } else {
        msgbox('', $lang['search_none'], 'info_2');
    }
    navigation($gcount, $count['cnt'], '/index.php?' . $query_string . '&page=');
} else {
    msgbox('', '', 'info_search');
}
$tpl->clear();
$db->free();
開發者ID:skypach,項目名稱:skypach.ru,代碼行數:31,代碼來源:search.php

示例8: array

$tableSchema = array();
$tableSchema[] = "ALTER TABLE `" . PREFIX . "_vote` ADD `grouplevel` VARCHAR(250) NOT NULL DEFAULT 'all'";
foreach ($tableSchema as $table) {
    $db->query($table);
}
$handler = fopen(ENGINE_DIR . '/data/config.php', "w") or die("Извините, но невозможно записать информацию в файл <b>.engine/data/config.php</b>.<br />Проверьте правильность проставленного CHMOD!");
fwrite($handler, "<?PHP \n\n//System Configurations\n\n\$config = array (\n\n");
foreach ($config as $name => $value) {
    fwrite($handler, "'{$name}' => \"{$value}\",\n\n");
}
fwrite($handler, ");\n\n?>");
fclose($handler);
$fdir = opendir(ENGINE_DIR . '/cache/system/');
while ($file = readdir($fdir)) {
    if ($file != '.' and $file != '..' and $file != '.htaccess') {
        @unlink(ENGINE_DIR . '/cache/system/' . $file);
    }
}
@unlink(ENGINE_DIR . '/data/snap.db');
clear_cache();
if ($db->error_count) {
    $error_info = "Всего запланировано запросов: <b>" . $db->query_num . "</b> Неудалось выполнить запросов: <b>" . $db->error_count . "</b>. Возможно они уже выполнены ранее.<br /><br /><div class=\"quote\"><b>Список не выполненных запросов:</b><br /><br />";
    foreach ($db->query_list as $value) {
        $error_info .= $value['query'] . "<br /><br />";
    }
    $error_info .= "</div>";
} else {
    $error_info = "";
}
msgbox("info", "Информация", "Обновление базы данных с версии <b>9.7</b> до версии <b>9.8</b> успешно завершено.<br /><br />{$error_info}<br />Нажмите далее для продолжения процессa обновления скрипта.");
開發者ID:Gordondalos,項目名稱:union,代碼行數:30,代碼來源:9.7.php

示例9: defined

defined('WCROOT') or die('Access Denied');
require WCROOT . PS . "config" . PS . "config_" . $_SESSION['domain'] . ".php";
$db = new db();
$sqlfile = WCROOT . '/install/data/basic.sql';
file_exists($sqlfile) or die('<br /><font color="#F00">數據庫安裝文件丟失:' . $sqlfile . '</font>');
$sql = file_get_contents($sqlfile);
$sql = str_replace("\r\n", "\n", $sql);
if (empty($sql)) {
    die('無法獲取安裝數據。file_get_contents()');
}
$sql = trim(str_replace("\r", "\n", str_replace(' `ws_', ' `' . $db_config['db_pre'], $sql)));
$ret = explode(";\n", $sql);
unset($sql);
$result = true;
foreach ($ret as $sql) {
    $sql = trim($sql);
    @$db->execute($sql) or $result = false;
}
if ($result) {
    msgbox('', 'index.php?step=6');
} else {
    echo '<div style="padding:30px 0 30px 20px; color:#F00;">係統模塊安裝失敗,請重新安裝或嘗試跳過這一步。</div>';
}
?>
<table width="100%"><tr>
<td width="80" height="80">&nbsp;</td>
<td align="center"><a href="index.php?step=4" onfocus="this.blur()"><img src="images/button_prev.png" width="112" height="35" /></a></td>
<td align="center"><a href="index.php?step=6" onfocus="this.blur()"><img src="images/button_next.png" width="112" height="35" /></a></td>
<td width="80">&nbsp;</td>
</tr></table>
開發者ID:dalinhuang,項目名稱:water-svn,代碼行數:30,代碼來源:step5.php

示例10: msgbox

    }
}
if ($config['allow_admin_wysiwyg'] == "1" or $config['allow_site_wysiwyg'] == "1" or $config['allow_static_wysiwyg'] == "1") {
    $js_array .= "\n<script type=\"text/javascript\" src=\"//ajax.googleapis.com/ajax/libs/webfont/1/webfont.js\"></script>";
    $js_array .= "\n<script type=\"text/javascript\" src=\"{$config['http_home_url']}engine/editor/scripts/webfont.js\"></script>";
    $js_array .= "\n<link media=\"screen\" href=\"{$config['http_home_url']}engine/editor/css/default.css\" type=\"text/css\" rel=\"stylesheet\" />";
}
if ($video_found) {
    $js_array .= "\n<link media=\"screen\" href=\"{$config['http_home_url']}engine/classes/html5player/mediaelementplayer.css\" type=\"text/css\" rel=\"stylesheet\" />";
}
if (stripos($tpl->copy_template, "{content}") !== false) {
    $custom_news = false;
}
if ($_SERVER['QUERY_STRING'] and !$tpl->result['content'] and !$tpl->result['info'] and !$custom_news) {
    @header("HTTP/1.0 404 Not Found");
    msgbox($lang['all_err_1'], $lang['news_err_27']);
}
if (count($onload_scripts)) {
    $onload_scripts = implode("\n", $onload_scripts);
    $ajax .= <<<HTML

jQuery(function(\$){
{$onload_scripts}
});
HTML;
} else {
    $onload_scripts = "";
}
$ajax .= <<<HTML

//-->
開發者ID:Gordondalos,項目名稱:union,代碼行數:31,代碼來源:main.php

示例11: msgbox

        if ($er) {
            $all_er .= '<li>' . $er . '</li>';
        }
    }
    if ($all_er) {
        msgbox('Ошибка', $all_er, '?mod=mysettings');
    } else {
        if ($newPassOk) {
            $db->query("UPDATE `" . PREFIX . "_users` SET user_name = '" . $user_name . "', user_lastname = '" . $user_lastname . "', user_email = '" . $user_email . "', user_search_pref = '" . $user_name . " " . $user_lastname . "' WHERE user_id = '" . $user_info['user_id'] . "'");
        } else {
            $db->query("UPDATE `" . PREFIX . "_users` SET user_name = '" . $user_name . "', user_lastname = '" . $user_lastname . "', user_email = '" . $user_email . "', user_password = '" . $new_pass . "', user_search_pref = '" . $user_name . " " . $user_lastname . "' WHERE user_id = '" . $user_info['user_id'] . "'");
        }
        //clear cache
        mozg_clear_cache_file('user_' . $user_info['user_id'] . '/profile_' . $user_info['user_id']);
        mozg_clear_cache();
        msgbox('Изменения сохранены', 'Ваша персональная информация была успешно сохранена', '?mod=mysettings');
    }
} else {
    echoheader();
    echohtmlstart('Редактирование собственного профиля');
    echo <<<HTML
<style type="text/css" media="all">
.inpu{width:300px;}
textarea{width:300px;height:100px;}
</style>

<form method="POST" action="">

<div class="fllogall">E-mail:</div><input type="text" name="email" class="inpu" value="{$row['user_email']}" /><div class="mgcler"></div>

<div class="fllogall">Имя:</div><input type="text" name="name" class="inpu" value="{$row['user_name']}" /><div class="mgcler"></div>
開發者ID:BGCX067,項目名稱:facestor-svn-to-git,代碼行數:31,代碼來源:mysettings.php

示例12: str_replace

if (!$is_logged) {
    $login_panel = str_replace("{result}", $result, $login_panel);
    echo $login_panel;
    exit;
}
if (!is_writable(ENGINE_DIR . '/data/')) {
    msgbox("info", "Информация", "Установите права для записи на папку 'engine/data/' CHMOD 777");
}
if (!is_writable(ENGINE_DIR . '/data/config.php')) {
    msgbox("info", "Информация", "Установите права для записи на файл 'engine/data/config.php' CHMOD 666");
}
if (!is_writable(ENGINE_DIR . '/data/dbconfig.php')) {
    msgbox("info", "Информация", "Установите права для записи на файл 'engine/data/dbconfig.php' CHMOD 666");
}
if (!is_writable(ENGINE_DIR . '/data/xfields.txt')) {
    msgbox("info", "Информация", "Установите права для записи на файл 'engine/data/xfields.txt' CHMOD 666");
}
if (!$_SESSION['dle_update']) {
    echo $skin_header;
    echo <<<HTML
<form action="index.php" method="GET">
<input type="hidden" name="next" value="start">
<div class="box">
  <div class="box-header">
    <div class="title">Информация</div>
  </div>
  <div class="box-content">
\t<div class="row box-section">
\t\t<font color="red"><b>Внимание:</b></font><br /><br />Прежде чем приступить к процедуре обновления скрипта и базы данных, убедитесь что вы создали и сохранили у себя полные бекапы файлов скрипта и базы данных. Процедура обновления вносит необратимые изменения в структуру базы данных, отмена которых в будущем будет невозможна, вернуть в предыдущее состояние базу данных, можно будет только путем восстановления бекапов базы данных. Также во время процедуры обновления скрипт выполняет тяжелые запросы к базе данных, выполнение которых может потребовать продолжительное время, поэтому обновление рекомендуется проводить во время минимальной нагрузки на сервер. Для больших сайтов, имеющие большое количество публикаций, рекомендуется предварительно проводить обновление на локальном компьютере.
\t</div>
\t<div class="row box-section">
開發者ID:Gordondalos,項目名稱:union,代碼行數:31,代碼來源:template.php

示例13: array

$restrictions = array();
if (isset($_GET['restrict'])) {
    list($key, $value) = explode(":", $_GET['restrict'], 2);
    $restrictions[$key] = $value;
}
$row = $DB->q('MAYBETUPLE SELECT t.*, a.country, c.name AS catname,
                                 a.shortname AS affshortname, a.name AS affname
               FROM team t
               LEFT JOIN team_category c USING (categoryid)
               LEFT JOIN team_affiliation a ON (t.affilid = a.affilid)
               WHERE teamid = %i', $id);
if (!$row) {
    error("Invalid team identifier");
}
if (isset($_GET['edited'])) {
    echo addForm('refresh_cache.php') . msgbox("Warning: Refresh scoreboard cache", "If the membership of a team in a contest was changed, it may be necessary to recalculate any cached scoreboards.<br /><br />" . addSubmit('recalculate caches now', 'refresh')) . addEndForm();
}
$users = $DB->q('TABLE SELECT userid,username FROM user WHERE teamid = %i', $id);
$affillogo = "../images/affiliations/" . urlencode($row['affilid']) . ".png";
$countryflag = "../images/countries/" . urlencode($row['country']) . ".png";
$teamimage = "../images/teams/" . urlencode($row['teamid']) . ".jpg";
echo "<h1>Team " . specialchars($row['name']) . "</h1>\n\n";
if ($row['enabled'] != 1) {
    echo "<p><em>Team is disabled</em></p>\n\n";
}
?>

<div class="col1"><table>
<tr><td>ID:        </td><td>t<?php 
echo specialchars($row['teamid']);
?>
開發者ID:sponi78,項目名稱:domjudge,代碼行數:31,代碼來源:team.php

示例14: db_fieldsmemory

                    db_fieldsmemory($rsConsultaConfigDBPref, 0);
                    if (isset($sEmailServ) && $sEmailServ != '') {
                        $oMail = new Smtp();
                        $oMail->Send($mailpref, $w13_emailadmin, 'Prefeitura On-Line - Esqueci Minha Senha', $mensagemDestinatario);
                        msgbox("Uma mensagem foi encaminhada para o e-mail: {$sEmailServ}");
                    }
                    db_logs("", "", 0, "Esqueci minha senha: cgc ou cpf - {$sCgcCpf}");
                }
            } else {
                $sMsg = "Dados informados NÃO encontrados no cadastro da Prefeitura!\\n\n                   Procure o balcão da Prefeitura para realizar seu cadastro.";
                msgbox($sMsg);
                db_redireciona("centro_pref.php");
            }
        } else {
            $sMsg = "Dados informados NÃO encontrados no cadastro da Prefeitura!\\n\n                 Procure o balcão da Prefeitura para realizar seu cadastro.";
            msgbox($sMsg);
            db_redireciona("centro_pref.php");
        }
    }
}
function formataDataNascBanco($sData)
{
    $data = str_replace("/", "", $sData);
    $datanasc_dia = substr($data, -8, 2);
    $datanasc_mes = substr($data, -6, 2);
    $datanasc_ano = substr($data, -4);
    $datanasc = $datanasc_ano . "-" . $datanasc_mes . "-" . $datanasc_dia;
    return $datanasc;
}
function formataCpfBanco($sCpf)
{
開發者ID:arendasistemasintegrados,項目名稱:mateusleme,代碼行數:31,代碼來源:conf_senhas_servidor.php

示例15: set_cookie

                set_cookie("hid", $hid, 365);
                header("Location: {$admin_link}");
            } else {
                $error_log = 'Доступ отключён!';
            }
        } else {
            $error_log = 'Доступ отключён!';
        }
    }
}
if (!$logged) {
    echoheader();
    echohtmlstart('Вход в панель управления');
    echo <<<HTML
<form method="POST" action="">
 <div class="fllogall">E-mail:</div><input type="text" name="email" class="inpu" />&nbsp; <font color="red">{$error_log}</font>
 <div class="mgcler"></div>
 <div class="fllogall">Пароль:</div><input type="password" name="pass" class="inpu" />
 <div class="mgcler"></div>
 <div class="fllogall">&nbsp;</div><input type="submit" class="inp fl_l" name="log_in" value="Войти" style="margin-top:5px" />
</form>
<div class="clear"></div>
HTML;
    echohtmlend();
} else {
    if ($user_info['user_group'] == 1) {
        include ADMIN_DIR . '/mod.php';
    } else {
        msgbox('Информация', 'У вас недостаточно прав для просмотра этого раздела. <a href="' . $admin_link . '?act=logout">Выйти</a>', '');
    }
}
開發者ID:BGCX067,項目名稱:facestor-svn-to-git,代碼行數:31,代碼來源:login.php


注:本文中的msgbox函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。