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


PHP page_protect函數代碼示例

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


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

示例1: page_protect

<?php

include '../login/dbc.php';
page_protect();
$fulluri = $_SERVER['REQUEST_URI'];
$id = filter_var($fulluri, FILTER_SANITIZE_NUMBER_INT);
?>

<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
	<link rel="stylesheet" href="../public/css/styles.css">
</head>

<body >
<iframe src="lmenubar.php" height="600" width="15%" frameborder="0" style="float:left;" name="lmenu"></iframe>
<iframe src="paydeb.php" height="650" width="68%" frameborder="0" style="float:none;" name="MAIN"></iframe>
<iframe src="rmenuopd.php" height="600" width="15%" frameborder="0" style="float:right;" name="rmenu"></iframe>
</body>
</html>
開發者ID:khomsn,項目名稱:Clinic_Suite,代碼行數:21,代碼來源:payfordeb.php

示例2: page_protect

<?php

include "includes/general.inc.php";
include "includes/dbc.inc.php";
page_protect(false, true);
function debo_mostrar_captcha()
{
    global $globals;
    // Sólo mostramos el captcha si se ha registrado con éxito ya esta ip en las últimas 24 horas
    // o si se han fallado 3 veces durante el registro en las últimas 24 horas
    return log_get("register_ok", ip2long($globals['ip']), 0, 24 * 60 * 60) > 0 || log_get("register_fail", ip2long($globals['ip']), 0, 24 * 60 * 60) >= 3;
}
$mostrar_captcha = debo_mostrar_captcha();
// Cuando pulsamos submit del formulario entramos por aquí...
if (array_key_exists('doRegister', $_POST)) {
    // Filtramos todos los campos del formulario, para evitar código malicioso
    foreach ($_POST as $key => $value) {
        $data[$key] = filter($value);
    }
    // Validamos los datos, y si son correctos creamos el usuario
    do_register();
    if (!empty($hasError)) {
        log_insert("register_fail", ip2long($globals['ip']));
        $mostrar_captcha = debo_mostrar_captcha();
    }
}
get_header("register.php", $mostrar_captcha);
escribir_titulo("Regístrate", "Entra en la comunidad");
// Mostramos una caja con los errores encontrados tras hacer submit
escribir_resultado_validaciones($hasError);
?>
開發者ID:javimoya,項目名稱:carpooling,代碼行數:31,代碼來源:register.php


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