Advertisement
milardovich

Ribapp

Jun 14th, 2011
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2. $conf = array(
  3.         'G_SERVIDOR' => 'localhost',
  4.         'G_USUARIO' => 'root',
  5.         'G_CLAVE' => '',
  6.         'G_BASEDATOS' => 'ribapp'
  7.     );
  8. foreach($conf as $def => $value){
  9.     if(!defined($def)){
  10.         define($def,$value);
  11.     }
  12. }
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement