PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
Hello all,
I am trying to accomplish something utlizing PHP. What I have is a menu marked up as such:
<div id="navcontainer">
<ul id="navlist">
<li id="active"><a href="About_Me.php" title="you know you want to learn more about me" id="current">About Me</a></li>
<li><a href="Skillset.php" title="I've got skillz">Skill set</a></li>
<li><a href="Hireme.php" title="I can do wonders for your web presence">Hire Me</a></li>
<li><a href="Portfolio.php" title="web sites, graphics, newsletters">Portfolio</a></li>
<li><a href="Contact.php" title="how to get in touch with me">Contact</a></li>
<li><a href="Resume.php" title="my beautiful resume">Résumé</a></li>
<li><a href=" http://inspiredevolution.blogs.com/inspiredevolutioncom/" title="the blog for Inspired-Evolution.com" >Blog</a></li>
<li class="last"><a href="RSS.php" title="Syndication that is really simple" >RSS</a></li>
</ul>
</div>
and then I have everything styled nicely with CSS to give you the menu you see here:
What I want to do next is to change the menu from being hard coded on all of my pages to being an include which is easily done with PHP. The stumbling block is I want to be able to keep the CSS functionality where you have the active indicator which has different CSS for the link of the page you are on. I have seen this done with PHP before with something like IF on active page use this style ELSE use this style. Can any PHP gurus assist me in coding something like this?
I don't believe it is too difficult, but beyond by scope right at the moment.
tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
There are 2 ways:
1- hardcode a variable which holds the pagename or title of the page and after that include the menu. In the menu, for each list item you check the condition if (this page == pagename) then echo "current"
I am trying the photo Matt version, but I get this error:
parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /hsphere/local/home/bruceg/inspired-evolution.com/includes/menu.php on line 12