Ver Mensaje Individual
  #6 (permalink)  
Antiguo 31/07/2009, 13:06
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 HTML:
<select name="Seccion" size="1" id="Seccion">
  <option value="web1">Ir a la web 1</option>
  <option value="web2">Ir a la web 2</option>
</select> 
Código PHP:

$db 
= array();

$db[0] = array('host'=>'localhost''user'=>'root','pass'=>'xxxx','database'=>'dbweb1');

$db[1] = array('host'=>'localhost''user'=>'root','pass'=>'xxxx','database'=>'dbweb2');


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

Me tengo que ir no puedo seguir contestando, suerte!