![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
17/05/2011, 13:07
|
| | Fecha de Ingreso: mayo-2011
Mensajes: 5
Antigüedad: 13 años, 8 meses Puntos: 0 | |
Respuesta: consulta bastante básica <?php
$defconexion = true;
function conectarBD()
{
$host_conexion="localhost";
$login_conexion="horario";
$passwd_conexion="horario";
$db_conexion="topsql";
$conex = mysql_connect($host_conexion,$login_conexion,$pass wd_conexion);
echo mysql_error();
mysql_select_db($db_conexion);
echo mysql_error();
return $conex;
}
?> |