PHP Classes

File: WIAdmin/WIPlugin/WIBlog/WICore/init.php

Recommend this page to a friend!
  Classes of Jules Warner   WICMS   WIAdmin/WIPlugin/WIBlog/WICore/init.php   Download  
File: WIAdmin/WIPlugin/WIBlog/WICore/init.php
Role: Example script
Content type: text/plain
Description: Example script
Class: WICMS
Database driven content management system with PDO
Author: By
Last change:
Date: 7 years ago
Size: 245 bytes
 

Contents

Class file image Download
<?php

ini_set
('display_errors',1);
error_reporting(E_ALL);


require
'WIClass/WI.php';


spl_autoload_register(function($class)
{
    require_once
'WIClass/' . $class . '.php';
});

$blog = new WIBlog();
$install = new WIInstall()
?>