PHP Classes

File: familytree/index.php

Recommend this page to a friend!
  Classes of Ssaurz Acharya   FedUni PHP Family Tree App   familytree/index.php   Download  
File: familytree/index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: FedUni PHP Family Tree App
Manage and display a tree of family people
Author: By
Last change:
Date: 2 years ago
Size: 308 bytes
 

Contents

Class file image Download
<?php
session_start
();
$root_url = $_SERVER["HTTP_HOST"] . "/familytree/";
define("ROOT_URL", $root_url);
define("DS", DIRECTORY_SEPARATOR);
define("BASE_PATH", __DIR__);
require_once(
BASE_PATH . DS . "lib" . DS . "Loader.php");
$load = new Loader();
$load->loadClass();
$ecommapp = new BootStrap();