PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of mohamad Reza kavoosi   PHP Menu Generator   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: example of how to use and show generated menu
Class: PHP Menu Generator
Generate nested menus with HTML list items
Author: By
Last change:
Date: 9 years ago
Size: 229 bytes
 

Contents

Class file image Download
<?php

require_once 'menuClass.php';
$menu=menu::init();
$output= $menu->ShowSaved();
?>
<html>
<head>
    <link href="style.css" type="text/css" rel="stylesheet" />
</head>
<body>
    <?= $output;?>
</body>
</html>