$msg = ''; if (isset($_POST['title'])){ require_once 'config.inc.php'; $e = array(); $level = 'district'; // validation if (empty($_POST['title'])){ $e[] = 'title ไม่ถูกต้อง'; } if (empty($_POST['district_id'])){ if (empty($_POST['amphur_id'])){ if (empty($_POST['province_id'])){ $e[] = 'ไม่ได้ระบุจังหวัด'; } $e[] = 'ไม่ได้ระบุอำเภอ'; $e[] = 'ไม่ได้ระบุตำบล'; } else { $amphur_id = intval($_POST['amphur_id']); $r = mysql_query("SELECT count(*) FROM `amphur` WHERE `AMPHUR_ID`=$amphur_id"); if (mysql_result($r,0)==0){ $e[] = 'อำเภอไม่ถูกต้อง'; } else { $r = mysql_query("SELECT count(*) FROM `district` WHERE `AMPHUR_ID`=$amphur_id"); if (mysql_result($r,0)>0){ $e[] = 'ยังไม่ได้ระบุตำบล'; } else { $level = 'amphur'; //ไม่จำเป็นต้องระบุตำบลเพราะอำเภอไม่มีตำบล } } } } else { $district_id = intval($_POST['district_id']); $r = mysql_query("SELECT count(*) FROM `district` WHERE `DISTRICT_ID`=$district_id"); if (mysql_result($r,0)==0){ $e[] = 'ตำบลไม่ถูกต้อง'; } } if (count($e)>0){ $msg = '