View Single Post
Old 09-08-2012, 09:42 PM   PM User | #5
yaelbe
New Coder

 
Join Date: Nov 2002
Location: Israel
Posts: 36
Thanks: 0
Thanked 0 Times in 0 Posts
yaelbe is an unknown quantity at this point
yes, i have also a top menu.php but i don't think that it changes something:

<div id="menu" >
<?php
// include functions
include_once('includes/functions.php');
// array to hold top menu
$top_menu_items = array(
'index.php' => array('text' => 'Home'),
'about.php' => array('text' => 'About'),
'contact.php' => array('text' => 'Contact')
);
// call the function that draws the menu
echo draw_menu($script_name, $top_menu_items);
?>
</div>
yaelbe is offline   Reply With Quote