Posted by Paul Furman on 07/25/07 23:09
Beauregard T. Shagnasty wrote:
> John wrote:
>
>
>>I have an html page and want to include and html menu that I use on
>>all pages. What is the best way to do this? A php include command?
>
>
> That is what I do.
>
> include "/common/menu.php";
>
> Mine is a php script because it does processing based on what page(s)
> called it. If yours is a static menu, it can be pure HTML.
In case John doesn't know...
<?
include "/common/menu.php";
?>
[Back to original message]
|