todolistPhp / includes / config.php
config.php
Raw
<?php
    $site_title = "Moment3 webbplats";
    $divider = " | ";
// Aktivera felrapportering
error_reporting(-1);
ini_set("display_errors", 1);

// Autoinkludera klasser
spl_autoload_register(function($class_name){
    include("classes/". $class_name . ".class.php");
});

// active sessions
session_start();