Mis duda son:
Quiero crear un fichero para crear db, estoy estudiando algunos manuales que me mandan hacer algo parecido:
Código PHP:
<html>
<head>
<title>prueba creae db<title>
</head>
<body>
<?php
//Prueba crear db//
mysql_create_db(prueba_bd );
?>
</body>
</html>
En esta línea creo que me falta algo: mysql_create_db(prueba_bd );
Bueno también quiero agregarle un texto de repuesta que confirme si se ha creado con éxito o si ha ocurrido algún error.
Esto le pasa lo mismo que al otro.
Código HTML:
<html> <head> <title>prueba creae db<title> </head> <body> <?php mysql_drop_db(prueba_bd ); ?> </body> <html>