PHP Classes

File: exemples/php-activerecord/config_php_activerecord.php

Recommend this page to a friend!
  Classes of Wesley David   wdForm   exemples/php-activerecord/config_php_activerecord.php   Download  
File: exemples/php-activerecord/config_php_activerecord.php
Role: Configuration script
Content type: text/plain
Description: Configuration script
Class: wdForm
Generate and process HTML forms
Author: By
Last change: Update of exemples/php-activerecord/config_php_activerecord.php
Date: 3 months ago
Size: 976 bytes
 

Contents

Class file image Download
<?php

/**
 * ###########################################################################################
 * #######################--DEFINE DADOS CONEXÃO COM BANCO DE DADOS--#########################
 * ###########################################################################################
*/
   
define('BD_HOST', 'localhost');
   
define('BD_DATABASE', 'wdformdemo');
   
define('BD_USER', 'root');
   
define('BD_PASS', '');



/**
 * ###########################################################################################
 * #######################--Conexão com o Banco de Dados--#######################
 * ###########################################################################################
*/
   
ActiveRecord\Config::initialize(function($cfg)
    {
       
       
$cfg->set_model_directory('models');
       
$cfg->set_connections(array('development' =>'mysql://'.BD_USER.':'.BD_PASS.'@'.BD_HOST.'/'.BD_DATABASE.'?charset=utf8'));
       
    });