Ver Mensaje Individual
  #2 (permalink)  
Antiguo 31/07/2009, 12:50
Avatar de Synkronice
Synkronice
 
Fecha de Ingreso: octubre-2007
Ubicación: Madrid
Mensajes: 831
Antigüedad: 17 años, 1 mes
Puntos: 48
Respuesta: [AYUDA] Multi config.php

Código PHP:

$db 
= array();

$db[0] = array('host'=>'localhost''user'=>'myUser1','pass'=>'myPass1','database'=>'myDB1');

$db[1] = array('host'=>'localhost''user'=>'myUser2','pass'=>'myPass2','database'=>'myDB2');


switch(
$web)
{
  case 
'web2':
    
$database_config $db[1];
    break;
  default:
    
$database_config $db[0];
    break;

Saludos!