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?
Integrate the Menu into a Framesite with PHP-Pages
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.
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.