PHP Classes

File: inc/config.inc.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   Slim Simple PHP URL Shortener   inc/config.inc.php   Download  
File: inc/config.inc.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Slim Simple PHP URL Shortener
Application to create and expand short URLs
Author: By
Last change:
Date: 6 months ago
Size: 701 bytes
 

Contents

Class file image Download
<?php
/**
 * @author Pierre-Henry Soria <ph7software@gmail.com>
 * @copyright (c) 2013, Pierre-Henry Soria. All Rights Reserved.
 * @link http://github.com/pH-7/Slim-URL-Shortener
 * @license GNU General Public License <http://www.gnu.org/licenses/gpl.html>
 */

namespace PHS;

defined('PHS') or die('Forbidden acces');


define('DEBUG', false); // FALSE = Development mode | TRUE = Production mode
define('STYLE_NAME', 'classic');
define('DEFAULT_LANG', 'en_US');
define('LANG_DOMAIN', 'shorturl');
define('ENCODING', 'utf-8');

// Database info
define('DB_HOSTNAME', 'localhost');
define('DB_NAME', 'shorturl');
define('DB_USR', 'root');
define('DB_PWD', '');