Milonic provide full featured pull down web menus for some of the worlds largest companies
click here to see what it can do for you

Download Milonic DHTML Menu
Buy Milonic DHTML Menu

Back To Start Of Archive
Taken From The Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Forum Topic: Click to view post
Last Updated: Wednesday July 18 2012 - 06:07:16

Integrate the Menu into a Framesite with PHP-Pages


Poster: Tiedi
Dated: Tuesday December 24 2002 - 12:38:31 GMT

OK. i´m from Germany, so I be sorry for my english.

OK. I´ve already installed the menu on my homepage. my homepage is working with frames. the menu already runs on al html pages that are shown in the mainframe but how I have to integrate the Code into a PHP file?

I mean this code that must in every page head:

<HTML>
<Head>
<script language=JavaScript src="frames_body_array.js" type=text/javascript></script>
<script language=JavaScript src="mmenu.js" type=text/javascript></script>
</HEAD>

How musst I do it in a PHP file?


Poster: F. Jeffe
Dated: Thursday January 2 2003 - 13:32:53 GMT

Hello Tiedi,

I don't know whether you've already came to a solution. If not you could try to put the code into an include file, like:

$menu = <<<HERE

<script language=JavaScript src="frames_body_array.js" type=text/javascript></script>
<script language=JavaScript src="mmenu.js" type=text/javascript></script>

HERE;

print $menu;


Then include this file into the page you want to show the menu. Also you could paste the code directly into the file you want the menu to appear. It works for me so why not for you! Success....



F.J.