Change theme:

Welcome to PHPMenus.com!

PHPMenu is an easy to use menu system for PHP that makes it easy to create complex menu systems.

Here is a quick overview of its features.

All menus on this web site are created using only a few lines of PHP code using the PHPMenus library.

All the code required for a simple, four-button menu is:

Code:

$menu = new Menu();

$menu->AddMenuItem(new MenuItem("Start", "index.php"));
$menu->AddMenuItem(new MenuItem("Features", "features.php"));
$menu->AddMenuItem(new MenuItem("How to use", "howtouse.php"));
$menu->AddMenuItem(new MenuItem("Purchase", "purchase.php"));

$menu->DrawMenu();

The download includes plenty of samples to help you get started. You won't find a simpler solution for creating dynamic website menus!