Jump to content

Menu advice


bach

Recommended Posts

Hello,

The following code is an example of the menu code contained on all the fundraising pages.

[code]
<ul>
<li><a href="../index.xhtml">Home</a></li>
<li><a href="../about/about.xhtml">About</a></li>
<li>Join Us</li>
<li>Outreach</li>
<li>News &amp; Events</li>
<li><a href="fund.xhtml">Fundraising</a></li>
<ul>
<li><a href="campaigns.xhtml">Current Campaigns</a></li>
<li>Help Us Raise Funds</li>
<li>Donations</li> </ul>
<li>Contact Us</li></ul>[/code]

My question is that on each page with a sub-menu like Fundraising I need to change the menu/sub-menu. Is it possible for me to write the whole menu and sub-menus and use php to check which submenus should be shown?

Bach
Link to comment
Share on other sites

You could do something like this:

[code]
<?php

$fund = $_GET["fund"];

?>
<ul>
<li><a href="../index.xhtml">Home</a></li>
<li><a href="../about/about.xhtml">About</a></li>
<li>Join Us</li>
<li>Outreach</li>
<li>News &amp; Events</li>
<li><a href="fund.xhtml">Fundraising</a></li>
<?php

if($fund == "raiser_1"){
?>
<ul>
<li><a href="campaigns.xhtml">Fund Raiser #1</a></li>
<li>Help Us Raise Funds</li>
<li>Donations</li> </ul>
<li>Contact Us</li></ul>
<?php
}
else if ($fund == "raiser_2")
{
?>
<ul>
<li><a href="campaigns.xhtml">Fund Raiser #2</a></li>
<li>Help Us Raise Funds</li>
<li>Donations</li> </ul>
<li>Contact Us</li></ul>
<?php
}
?>
[/code]

Then use the URL: yoursite.php?fund=raiser_1 or yoursite.php?fund=raiser_2.. etc.
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.