<?php
mysql_connect('localhost','root','028694430') or
die('ไม่สามารถติดต่อ MySQL ' .mysql_error());
//เช็คว่ามีการป้อน user ผ่านมาทางฟอร์มหรือยัง
if( isset($_REQUEST['dbuser']) ){
$dbuser=$_REQUEST['dbuser'];
mysql_select_db('mysql');
echo "<b>ลบ DB & user : $dbuser</b><hr>";
//ลบ Username ออกจากระบบ
$sql =" DELETE from user where User ='$dbuser' ";
$result = mysql_query($sql);
echo mysql_error();
//ลบชื่อฐานข้อมูลออกจากระบบ
$sql="DELETE from db where User = '$dbuser' ";
$result=mysql_query($sql);
echo mysql_error();
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Remove MySQL DB & User</title>
</head>