PHP Classes

File: demo.php

Recommend this page to a friend!
  Classes of Sebastian D   PHP Menu class   demo.php   Download  
File: demo.php
Role: Example script
Content type: text/plain
Description: example
Class: PHP Menu class
Create horizontal or vertical cascading menu
Author: By
Last change:
Date: 20 years ago
Size: 444 bytes
 

Contents

Class file image Download
<html>
<head>
</head>
<body>
<?
include ('menu.class.php');

$m = new menu();

$m->add(1,'Test','www.google.de','',1,20,70);
   
$m->add('1_1','Test','www.google.de','',0,20,70);
$m->add('2','Tests','www.google.de','',1,20,70);
   
$m->add('2_1','sTest','www.google.de','',1,20,70);
       
$m->add('2_1_1','Test','www.google.de','',0,20,70);
$m->add('3','Tests','www.google.de','',0,20,70);



echo
$m->GetHtml();
?>
</body>
</html>