Help! So, far things are going well, but for one thing... When the submenu drops down and you click on the link, the submenu then disappears. I'm trying to code it, so that even when a submenu is clicked on, the menu hierarchy remains until another choice, outside that particular submenu is selected.
I've pasted the code, but you can also view it at http://www.frightmanor.com/index.php. Much appreciated!
Thanks!
Shannon
<?php $null = "" ?>
<body>
<table style="float:left" width=140px border=0 cellpadding=1 bgcolor=#33ff33>
<tr>
<td>
<b><a href="index.php?aboutus=1">About Us</a></b>
</td>
<tr align="left">
<td>
<?php
if ($aboutus == 1) {
echo("<a href=\"03commembers.php\">$null Comittee Members</a>");
} ?>
</td>
</tr>
</tr>
<tr>
<td>
<b><a href="index.php?festivalinfo=1">Festival Information</a></b>
</td>
<tr align="left">
<td>
<?php
if ($festivalinfo == 1) {
echo("<a href=\"ticketprice.php\">$null Prices & Tickets</a><br>");
echo("<a href=\"maps.php\">$null Festival Map</a><br>");
echo("<a href=\"pictures.php\">$null Pictures</a><br>");
echo("<a href=\"hotels.php\">$null Area Hotels</a><br>");
echo("<a href=\"fooddrink.php\">$null Food & Drink</a><br>");
echo("<a href=\"market.php\">$null Irish Market</a><br>");
} ?>
</td>
</tr>
</tr>
<tr>
<td>
<b><a href="index.php?activities=1">Cultural Activities</a><b>
</td>
<tr align="left">
<td>
<?php
if ($activities == 1) {
echo("<a href=\"culturalday.php\">$null Children's Cultural Day</a><br>");
echo("<a href=\"civilwar.php\">$null Civil War Re-enactors</a><br>");
echo("<a href=\"weefolk.php\">$null Wee Folk Schedule</a><br>");
} ?>
</td>
</tr>
</tr>
<tr>
<td>
<b><a href="index.php?musicsport=1">Music & Sport</a></b>
</td>
<tr align="left">
<td>
<?php
if ($musicsport == 1) {
echo("<a href=\"bagpipes.php\">$null Bagpipes</a><br>");
echo("<a href=\"stageschedule.php\">$null Stage Schedule</a><br>");
echo("<a href=\"rugby.php\">$null Rugby</a><br>");
} ?>
</td>
</tr>
</tr>
<tr>
<td>
<b><a href="\faq.php">FAQ</a></b>
</td>
</tr>
<tr>
<td>
<b><a href="\volunteer.php">Volunteer</a></b>
</td>
</tr>
<tr>
<td>
<b><a href="\links.php">Sponsors & Links</a></b>
</td>
</tr>
</table>
</center>
</body>