Login   Register  
PHP Classes
elePHPant
Icontem

File: test2.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Vedanta Barooah  >  Tab Menu  >  test2.php  >  Download  
File: test2.php
Role: Example script
Content type: text/plain
Description: Tab Menu With Child Menus
Class: Tab Menu
Create tab menu for navigation using HTML and CSS
Author: By
Last change:
Date: 2004-09-26 08:30
Size: 732 bytes
 

Contents

Class file image Download
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<?
include("menu2.php");
$myMenu=array("One"=>"one.html","Two"=>"two.html","Three"=>"three.html","Four"=>"four.html","Five"=>"five.html","Six"=>"six.html");
$childArray=array("Ennie"=>"e.html","Minnie"=>"m.html","Miny"=>"m.html","Moe"=>"moe.html");
$label=date("F j, Y, g:i a");
// tabMenu($topMenu,$childMenu,$label,$activeTab,$topMenuAlign,$childMenuAlign);
$a=new tabMenu($myMenu,$childArray,$label,0,right,right);
?>