|
|
|
ตัวอย่าง Dependent ListMenu จะสร้างฐานข้อมูล code ของจังหวัด อำเภอ ตำบลไว้ทำไมหรือครับ |
|
|
|
|
|
|
|
https://www.thaicreate.com/community/dependant-listmenu-dropdownlist.html
เห็นสร้าง
amphur ->Amphur_CODE
district -> District_CODE
geography
province->PROVINCE_CODE
เห็นใช้เรียกแต่ ID นิครับ ไม่ทราบว่าสามารถเอไปประยุกต์ ใช้งานอื่นอะไรบ้างครับ
SQL
CREATE TABLE `amphur` (
`AMPHUR_ID` int(5) NOT NULL auto_increment,
`AMPHUR_CODE` varchar(4) collate utf8_unicode_ci NOT NULL,
`AMPHUR_NAME` varchar(150) collate utf8_unicode_ci NOT NULL,
`GEO_ID` int(5) NOT NULL default '0',
`PROVINCE_ID` int(5) NOT NULL default '0',
PRIMARY KEY (`AMPHUR_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=999 ;
CREATE TABLE `district` (
`DISTRICT_ID` int(5) NOT NULL auto_increment,
`DISTRICT_CODE` varchar(6) collate utf8_unicode_ci NOT NULL,
`DISTRICT_NAME` varchar(150) collate utf8_unicode_ci NOT NULL,
`AMPHUR_ID` int(5) NOT NULL default '0',
`PROVINCE_ID` int(5) NOT NULL default '0',
`GEO_ID` int(5) NOT NULL default '0',
PRIMARY KEY (`DISTRICT_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=8861 ;
CREATE TABLE `geography` (
`GEO_ID` int(5) NOT NULL auto_increment,
`GEO_NAME` varchar(255) collate utf8_unicode_ci NOT NULL,
PRIMARY KEY (`GEO_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=7 ;
CREATE TABLE `province` (
`PROVINCE_ID` int(5) NOT NULL auto_increment,
`PROVINCE_CODE` varchar(2) collate utf8_unicode_ci NOT NULL,
`PROVINCE_NAME` varchar(150) collate utf8_unicode_ci NOT NULL,
`GEO_ID` int(5) NOT NULL default '0',
PRIMARY KEY (`PROVINCE_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=77 ;
Tag : - - - -
|
|
|
|
|
|
Date :
2010-06-18 10:16:20 |
By :
Sacrifice |
View :
1729 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันเป็นฐานข้อมูลที่ผมเอามาจากโปรแกรมอื่นครับ เป็นฐานข้อมูลจริง ๆ ของกระทรวงสารณสุข
|
|
|
|
|
Date :
2010-06-18 10:25:27 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|