KoolMenu - Excellent PHP Menu Control
KoolMenu is great PHP Menu control that is easy to use and simple to customize. With semantic rendering, advanced CSS, rich client-side api and myriad of features, KoolMenu stands out to be best choice for your site navigation.
Key Features:
  • Semantic Rendering for Minimal HTML
  • Search-Engine Friendly
  • Simple PHP interface
  • Rich Client-side API
  • Menu Structure
  • Context Menu
  • Open and Close Animations
  • Highly customizable CSS styles and template
  • Step by step guides

    <?php
        //Step 1: Register KoolMenu component to your page
        require "KoolControls/KoolMenu/koolmenu.php";
     
        //Step 2: Create menu object.
        $km = new KoolMenu("km");
     
        //Step 3: Set properties for menu
        $km->styleFolder = "KoolControls/KoolMenu/styles/default";
     
        //Step 4: Building menu
        $km->Add("root","file","File");
        $km->Add("file","new","New...");
        $km->Add("new","newfile","File");
        $km->Add("new","newfolder","Folder");
     
        ...
    ?>
    <html>
        <head></head>
        <body>
            <!-- Step 5: Render menu -->
            <?php echo $km->Render();?>
        </body>
    </html>