rest-based-web-service / config.php
config.php
Raw
<?php

$site_title = "Moment5";
$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");
});