![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
18/04/2007, 10:02
|
| | Fecha de Ingreso: junio-2005
Mensajes: 30
Antigüedad: 19 años, 7 meses Puntos: 0 | |
ayuda con esto <?
$link = mysql_connect("localhost", "root", "123456");
if (!$link) {
echo "nada";
}
if (mysql_create_db("nueva")) {
echo "Database created successfully\n";
} else {
echo 'Error creating database: ' . mysql_error() . "\n";
}
?> |