簡體   English   中英

為index.php頁面設置一個值

[英]setting a value for index.php page

有沒有辦法在第一次加載時為index.php頁面設置值?

我希望index.php首次加載時像“ index.php?subject = 1”那樣加載。 因為這個值會隨着他們在網站中移動而改變,所以我不希望它是固定值。

有人屈服了

 if(empty($_SESSION['visited'])) {
    //DO STUFF 
    $_SESSION['visited'] = true; }

我似乎無法使它與我的功能一起工作。

find_selected_pa​​ge()

function find_selected_page () {
    global $current_subject;
    global $current_page;
    if (isset($_GET["subject"])) {
    $current_subject = find_subject_by_id ($_GET["subject"]);
    $current_page = find_default_post($current_subject ["id"]);
} elseif (isset($_GET["page"])) {
    $current_subject = null;
    $current_page = find_page_by_id ($_GET["page"]); 
} else {
    $current_page = null;
    $current_subject = null;
}
}

index.php

<?php
    require_once($_SERVER['DOCUMENT_ROOT'].'/session/session.php');
    require_once($_SERVER['DOCUMENT_ROOT'].'/db/dbcon.php');
    require_once($_SERVER['DOCUMENT_ROOT'].'/inc/functions.php');
    $context = "public";
    find_selected_page ();
?>
<html>
  <head>
    <title>Home</title>   
<?php   include($_SERVER['DOCUMENT_ROOT'].'/inc/style.php'); ?>
<body>
<?php   include($_SERVER['DOCUMENT_ROOT'].'/inc/header.php'); ?>
<?php   include($_SERVER['DOCUMENT_ROOT'].'/inc/nav_ribbon.php');?>
    <div id="p2dbg">
        <div id="p2dcontent">
            <div class="p2dcontent">
        <h1><?php echo htmlentities($current_subject ["menu_name"]); ?></h1><br />
                <?php if ($current_page) { ?>
                        <p><?php echo nl2br($current_page ["content"]); ?></p><br />
                        <?php } else { ?>
                            This page does not exist! please slect a page from the menu.
                        <?php } ?>                      
            </div>
        </div>
<?php   include($_SERVER['DOCUMENT_ROOT'].'/inc/footer.php'); ?>
    </div>
</body>
</html>

如果未傳遞您的值,則不要將所有內容都設置為null,而只需假定默認值即可:

// Set this to the value you want as your default
define("DEFAULTSUBJECT",1);
function find_selected_page () {
    global $current_subject;
    global $current_page;
    if (isset($_GET["subject"])) {
        $current_subject = find_subject_by_id ($_GET["subject"]);
        $current_page = find_default_post($current_subject ["id"]);
    } elseif (isset($_GET["page"])) {
        $current_subject = null;
        $current_page = find_page_by_id ($_GET["page"]); 
    } else {
        $current_subject = find_subject_by_id (DEFAULTSUBJECT);
        $current_page = find_default_post($current_subject ["id"]);
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM