34 lines
		
	
	
		
			811 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			811 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
    /**
 | 
						|
    * Connection parameters to the DB.
 | 
						|
    */
 | 
						|
    define('BD_HOST', 'localhost');
 | 
						|
    define('BD_NAME', 'complucine');
 | 
						|
    define('BD_USER', 'sw');
 | 
						|
    define('BD_PASS', '_admin_');
 | 
						|
 | 
						|
    /**
 | 
						|
     * Temprarl files directory.
 | 
						|
     */
 | 
						|
    define('TMP_DIR', __DIR__.'/img/');
 | 
						|
 | 
						|
    /**
 | 
						|
    * Utf-8 support settings, location (language and country) and time zone.
 | 
						|
    */
 | 
						|
    ini_set('default_charset', 'UTF-8');
 | 
						|
    setLocale(LC_ALL, 'es_ES.UTF.8');
 | 
						|
    date_default_timezone_set('Europe/Madrid');
 | 
						|
 | 
						|
    //Start session:
 | 
						|
    session_start();
 | 
						|
 | 
						|
    //HTML template:
 | 
						|
    require_once('template.php');
 | 
						|
    $template = new Template();
 | 
						|
    $prefix = $template->get_prefix();
 | 
						|
 | 
						|
    //Depuración (BORRAR):
 | 
						|
    ini_set('display_errors', 1);
 | 
						|
    ini_set('display_startup_errors', 1);
 | 
						|
    error_reporting(E_ALL);
 | 
						|
?>
 |