📄 sessions.php

Size: 532 bytes
Path: /home/islandholiday/public_html/includes/sessions.php
Modified: 2025-01-11 17:14:18
<?php   ob_start(); ob_flush(); session_start(); 
// session_set_cookie_params('','/','localhost',true,true); 
    spl_autoload_register('splAutoLoader');

function splAutoLoader($className){
    $path="admin/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;

    
}
include_once "admin/panel/assets/includes/functions.includes.php";

?>