| 
<?php/**
 * Configurazione Database
 * Your DB configuration
 */
 define("DB_DSN","mysql:host=localhost;dbname=test");
 define ( "DB_USER", "root" );
 define ( "DB_PASSWORD", "" );
 //Core path
 define ( "CORE", "core/" );
 // Api class path
 define ( "API_PATH", "core/api/" );
 // Db class path
 define ("DB" , "db/");
 |