Hi everyone. I'm fairly new to php and am trying to build a database driven site with dynamic menus at the top.
I have menu code already provided from another developer, and want to have those menus displayed on my page. I have tried several ways and cannot get it to work.
Methods I have tried:
<? echo "<script language=\"javascript\" src=\"./menu/menu.js\"></script>\n";
<? @include "./menu/menu.js" ?>
?>
<script language=\"javascript\" src=\"./menu/menu.js\"></script>
<?
<?
echo "<script language=\"javascript\">";
@include($path."menu/sniffer.js");
echo "</script>"
?>
No matter what I do though, the page still will not display the menus at the top.
Any help would be greatly appreciated.
Thanks!
James