me falto una cosa la web la eligiria mediante un list
que seria asi mi list?:
Código:
<select name="Seccion" size="1" id="Seccion">
<option>0</option>
<option>1</option>
</select>
deberia insertar esto en el intro :
Código:
$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($web)
{
case 'web2':
$database_config = $db[1];
break;
default:
$database_config = $db[0];
break;
}