Home > Article > Backend Development > PHP+Mysql+Ajax+JS realizes three-level linkage of provinces and municipalities_PHP tutorial
The basic idea is: dynamically create the option of the select control in JS, and obtain the province and city information obtained from the SQL database in PHP through Ajax. The code is a bit long, but many are similar, such as province, city, and district in JS The acquisition method is similar. In PHP, different select statements are executed through different parameters.
index.html code:
thumbnails.js code:
if($_REQUEST['ID']==0){//Get the list of provinces
$conn->Open($connstr); //Establish a database connection
$sqlstr = "select name from Province"; //Set the query string
$rs = $conn->Execute($sqlstr); //Execute the query to get the results
$num_cols = $rs->Fields->Count( ); //Get the number of columns in the data set
$Province=array();
$i=0;
while (!$rs->EOF) {
$Province[$i] =$rs->Fields['name']->Value.",";
$rs->MoveNext();
$i++;
}
foreach($Province as $val)
echo $val;
$conn->Close();
$rs = null;
$conn = null;
}
if($_REQUEST['ID']>0&&$_REQUEST['ID']<35){//Get the list of cities corresponding to the province
$conn->Open($connstr); / /Establish database connection
$sqlstr = "select name from City where cid=".$_REQUEST['ID']; //Set query string
$rs = $conn->Execute($sqlstr) ; //Execute the query to get the results
$num_cols = $rs->Fields->Count(); //Get the number of columns in the data set
$City=array();
$i=0 ;
while (!$rs->EOF) {
$City[$i]=$rs->Fields['name']->Value.",";
$rs ->MoveNext();
$i++;
}
foreach($City as $val)
echo $val;
$conn->Close();
$rs = null;
$conn = null;
}
if($_REQUEST['ID']>100){//Get the county list corresponding to the province and city
$conn->Open($connstr); //Establish a database connection
$sqlstr = "select name from County where cid=".$_REQUEST['ID']; //Set the query string
$rs = $conn->Execute($sqlstr); //Execute the query to get the results
$num_cols = $rs->Fields->Count(); //Get the number of columns in the data set
$County=array();
$i=0;
while (!$rs ->EOF) {
$County[$i]=$rs->Fields['name']->Value.",";
$rs->MoveNext();
$i++;
}
foreach($County as $val)
echo $val;
$conn->Close();
$rs = null;
$ conn = null;
}
?>
Database design, tables Province table, City table, County table.
Requirements: Province table requires id and name, id is recommended to be from 1 to 34, for example, Beijing id is 1, Guangdong id is 2, and so on;
City table requires id, name and cid, id is cid* 100+1, cid is the superior of the city. For example, the superior of Shenzhen is Guangdong Province. If the cid is 2, the id of Shenzhen is 201, and so on.
The County table requires id, name and cid. Because it is a three-level relationship, the id can be arbitrary. It is recommended to increase it from 10001. The cid is the superior level. For example, the cid of Baoan District is 201, and the cid of Longgang District is also 201;
Screenshot:
HTML effect:
After completion:
Note: PHP is server-side. It is recommended to debug through IP after publishing the website.