|
John Merlino
post date:
2010-09-09 21:03:22
|
I am getting a fatal error message from MySQl which relates to this line of code when I try to add an existing menu to teh page. Funny thing is I have managed to get one page working flawlessy which is the page I created from scratch using dynamic database links etc. When I tried to add this menu which is Menu1 to my next page and save it I get the error in browser which as I have said points to this line of code.
<div id="creative_menu_structure" >
<?php cm_structure("{label}","{link}","{target}","{highlite_identifier}","parentID","ID","",$RS_Navigation,"recordset","0"); ?>
</div>
Can anyone tell me why maybe?
|
|
|
Andrei Rinciog [Extend Studio]
post date:
2010-09-13 04:10:28
|
Hello,
The code on that line is correct. It just that it can't find that function that is placed in one of the menu files from the 'includes' folder.
I think that you are missing some include functions from the index.php page.
Please make sure that you have these lines:
// creative menus includes
require_once('includes/Creative_Menus/cm_config.php');
require_once('includes/Creative_Menus/CreativeMenus.php');
require_once('includes/Creative_Menus/MySQLRSDataSet.php');
Regards,
Andrei Rinciog
|
|