PHP Classes

File: config.php

Recommend this page to a friend!
  Classes of Andi Trînculescu   Navigation   config.php   Download  
File: config.php
Role: Example script
Content type: text/plain
Description: example file
Class: Navigation
Site navigation bar generation
Author: By
Last change:
Date: 21 years ago
Size: 155 bytes
 

Contents

Class file image Download
<?php
include_once('navigation.php');

session_start();
if (empty(
$_SESSION['nav'])) {
   
$nav = & new Navigation;
   
$_SESSION['nav'] = & $nav;
}
?>