简体   繁体   中英

setting a value for index.php page

is there a way set a value for the index.php page on its first load?

i would like index.php it to load like so "index.php?subject=1" when it loads for the first time. as this value will change as they move around in the site i don't want it to be a fixed value.

some one sugested

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

i cant seem to get that to work with my function.

find_selected_page()

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>

Instead of setting everything to null if your value isn't passed, just assume the default value:

// 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"]);
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM