Someone gave me a hand with a way to load breadcrumbs after the header has loaded, but I'm having trouble getting this to work. Can anyone take a look?
I'm using the following structure:
----------------------
index.php
----------------------
<?php include_once('includes/header.php'); ?>
<?php include_once('includes/menu.php'); ?>
<?php include_once('includes/side.php'); ?>
<?php
if (isset($_GET['pg']) && $_GET['pg'] != "") {
$pg = $_GET['pg'];
if (file_exists('pages/'.$pg.'.php')) {
@include ('pages/'.$pg.'.php');
} elseif (!file_exists('pages/'.$pg.'.php')) {
echo 'The page you requested does not exist';
}
} else {
@include ('pages/home.php');
}
?>
<?php include_once('includes/footer.php'); ?>
----------------------
menu.php
----------------------
<?php
$breadcrumb = array('home'=>'Home', 'about'=>'About Us');
if(isset($_GET['pg'])){
if(array_key_exists($_GET['pg'], $breadcrumb)){
echo $breadcrumb[$pg];
} else{
echo 'This breadcrumb does not exist';
}
} else{
echo $breadcrumb['home'];
}
?>
-------------------------------------------------------------------------------
A sample URL would be http://www.mywebsite.com/?pg=about
The original script in the index.php file checks the variable $pg and includes the appropriate PHP file from the /pages directory.
The breadcrumb script in menu.php also checks the $pg variable and sets the breadcrumb accordingly.
Sounds good.... but for some reason it is not printing out anything at all ($breadcrumb), UNLESS I load the URL without a ?pg= value, in which case I get the default value ('home').
Anyone have any ideas? Thanks!