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


PHP myfooter函數代碼示例

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


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

示例1: require_auth

function require_auth()
{
    global $password_hash, $GAMEID;
    # already authenticated
    if (is_admin()) {
        return;
    }
    # in the process of authentication
    if (array_key_exists('password', $_REQUEST)) {
        $pwd_given = $_REQUEST['password'];
        $pwd_hash = md5($pwd_given);
        if ($pwd_hash == $password_hash) {
            $_SESSION['hash'] = $password_hash;
            header("Location: " . $_REQUEST['goto']);
            return;
        }
    }
    # before authentication
    myhead("Enter password");
    #echo '<pre>'.print_r($_SERVER,True).'</pre>';
    echo "\n\t\t<form method=post>\n\t\t\t<input type=hidden name=goto value='" . $_SERVER['REQUEST_URI'] . "'>\n\t\t\t<p>Enter password: <input type=password name=password></p>\n\t\t\t<p><input type=submit value='Login'></p>\n\t\t</form>\n\t";
    myfooter();
    exit;
}
開發者ID:bithinalangot,項目名稱:gameserver,代碼行數:24,代碼來源:auth.inc.php

示例2: myfooter

)</td>
            <td align="right"><?php 
        echo $db['qty'];
        ?>
  <?php 
        echo $db['sing_sat_kecil_obat'];
        ?>
</td>
        </tr>
        <?php 
        $no++;
    }
    ?>

    <?php 
    myfooter();
    ?>
    </table>
    <div class="page" >
        <br />
        <table>
            <!--<tr>
                <td style="text-align: left; height: 60px">Pemeriksa</td>
            </tr>
            <tr>
                <td style="text-align: left;">-----------------------</td>
            </tr>-->
            <!--<tr>
                <td>No. Antrian</td><td>:</td><td></td>
            </tr>-->
	    <tr>
開發者ID:adit-gudhel,項目名稱:simpus-dev,代碼行數:31,代碼來源:cetak_nota_apotek_keluar.php


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