Here is what I have, but she ain't working !
I tried looking for a command like mysql_create_db(), which would do the job, but I ended up trying using mysql_db_query().
$Query="DROP DATABASE $_POST['SQLDBName']";
if (mysql_db_query($_POST['SQLDBName'], $Query)) {
echo'<img src="img/ohno.gif" width="15" height="15"></td></tr>';
}else{
echo'<img src="img/ohno.gif" width="15" height="15"><br>'.mysql_error().'</td></tr>';
}
Basically what happens right now is that I get a time out.
Thanks in advance for any help !
🙂