Jump to content

[SOLVED] Help setting data in header file from a seperate file


rickphp

Recommended Posts

Hi,

 

This may sound a little confusing but I will explain as best as I can!

 

I am using includes to build up my pages, for example the contact page would be made up of the following includes; header.tpl, contact.tpl and footer.tpl

 

What I am trying to do is make it so that when I navigate between pages the relative navigation button will be set to "active" in the header.tpl file, so that the user can see what page they are on when they look at the navigation buttons. If this isn't possible then any other way of acheiving the same outcome is fine. But this has got me a little stuck.

 

So if I was on the home page the header would be something like this (I've removed a lot of div tags etc to make things as simple as possible for any one who can help).

 

<a href="home" title="" class="active">Home</a><a href="example" title="">Example</a><a href="contact" title="">Contact</a>

 

If i then navigated to the contact page the header should look like this:

 

<a href="home" title="">Home</a><a href="example" title="">Example</a><a href="contact" title="" class="active">Contact</a>

 

Hopefully you guys will be able to help! Thanks in advance for anyone who can help!

Link to comment
Share on other sites

Hi,

I would suggest that you make an array of menu items like this:

$menu=array();
$menu[home.php]="Home";
$menu["example.php"]="Example";
$menu["contact.php"]="Contact"
etc.

Then loop through the array to create the html:

foreach($menu AS $url=>$txt){
  echo '<a href="'.$url.'"';
  if($url==$_SERVER["REQUEST_URI"]) echo ' class="active"';
  echo '>'.$txt.'</a>';
}

 

Not tested that code but it should work.

 

Chris

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.