dovrei cancellare un database di mysql tramite uno script php dove sto sbagliando? questo è il file
<html>
<head>
<title> </title>
</head>
<body>
<?php
$DbName="Istruzione";
if(mysql_delete_db ($DbName)) {
print("tutto bene!");
} else
{
print("devo vedere!");
}
?>
</body>
</html>
grazie e scusate l'ovvietà della domanda