Thread: HTML Help
View Single Post
  #2 (permalink)   [ ]
Old 05-28-2008, 04:32 PM
Shaun United Kingdom Shaun is offline
Banned User
Send a message via AIM to Shaun Send a message via MSN to Shaun Send a message via Skype™ to Shaun
Join Date: Feb 2005
Location: inglaterra
View Posts: 494
Re: HTML Help

Okay... by menu, do you mean navigation? This code will do:

Code:
<strong>Number 1</strong>

<ul>
<li>Option 1</li>
<li>Option 2</li>
<li>Option 3</li>
<li>Option 4</li>
<li>Option 5</li>
</ul>
Just do that with the amount of menus you need. If you're doing multiple pages, I'd suggest putting it in a navigation.php file, then including it on the page:

PHP Code:
<?php include("navigation.php"); ?>
EDIT: Just to give you an idea of what the page might be like (providing I've understood your questions xD):

Code:
<html>
<head>
  <title>Test Page</title>
</head>
<body>
  <p>Lorem ipsum dolor, et cetera.</p>

  <div id="navigation">
  <?php include("navigation.php"); ?>
  </div>
</body>
</html>
Reply With Quote
Advertisement