📄 index.php

Size: 362 bytes
Path: /home/islandholiday/public_html/admin/panel/OLD/index.php
Modified: 2020-10-06 07:44:24
<?php 
spl_autoload_register('splAutoLoader');

function splAutoLoader($className){
    $path="panel/assets/classes/"; //path to classes folder
    $extensation = ".classes.php"; //file extensation for the files in classes folder
    $fullpath = $path.$className.$extensation;

    if (!file_exists($fullpath)) {
        return false;
    }

    include_once $fullpath;

}