php省市数据库 php的数据库在哪个目录下

请问怎么用PHP生成全国各省市的随时地址?一般这样php省市数据库的都是存在数据库中php省市数据库,数据库3个字段idpid name ,分别是id 上级id 名称
用数组,三维数组
比如
idpidname
10广东省
21广州市
32花都区
然后PHP读取库,用一个迭代器,理论上可以取出无限级分类
关于php mysql ajax省市区三级联动菜单,求帮助基本思想就是:在JS动态创建select控件的option,通过Ajax获取在PHP从SQL数据库获取的省市区信息php省市数据库 , 代码有点长php省市数据库,但很多都是类似的php省市数据库,例如JS中省、市、区获取方法类似 , PHP中通过参数不同执行不同的select语句 。
index.html代码:
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
""
html xmlns=""
head
title省市区三级联动/title
META http-equiv=Content-Type content="text/html; charset=gb2312"
script src="https://www.04ip.com/post/scripts/thumbnails.js" type="text/javascript"/script
/head
thumbnails.js代码:
window.onload = getProvince;
function createRequest() {//Ajax于PHP交互需要对象
try {
request = new XMLHttpRequest();//创建一个新的请求对象;
} catch (tryMS) {
try {
request = new ActiveXObject("Msxml2.XMLHTTP");
} catch (otherMS) {
try {
request = new ActiveXObject("Microsoft.XMLHTTP");
} catch (failed) {
request = null;
}
}
}
return request;
}
function sech(id) {//省市改变时触发,select的onchange事件
var aa = document.getElementById(id);
if(id=="sheng"){
getCity(aa.value);//这里aa.value为省的id
}
if(id=="shi")
{
getCounty(aa.value);//这里aa.value为市的id
}
}
function getProvince() {//获取所有省
request = createRequest();
if (request == null) {
alert("Unable to create request");
return;
}
var url= "getDetails.php?ID=0";//ID=0时传递至PHP时让其获取所有省
request.open("GET", url, true);
request.onreadystatechange = displayProvince; //设置回调函数
request.send(null);//发送请求
}
function getCity(id){//获取省对应的市
request = createRequest();
if (request == null) {
alert("Unable to create request");
return;
}
var url= "getDetails.php?ID="escape(id);
request.open("GET", url, true);
request.onreadystatechange = displayCity;
request.send(null);
}
function getCounty(id){//获取市对应的区
request = createRequest();
if (request == null) {
alert("Unable to create request");
return;
}
var url= "getDetails.php?ID="escape(id);
request.open("GET", url, true);
request.onreadystatechange = displayCounty;
request.send(null);
}
function displayProvince() {//将获取的数据动态增加至select
if (request.readyState == 4) {
if (request.status == 200) {
var a=new Array;
var b=request.responseText;//将PHP返回的数据赋值给b
a=b.split(",");//通过","将这一数据保存在数组a中
document.getElementById("sheng").length=1;
var obj=document.getElementById("sheng');
for(i=0;i
obj.options.add(new Option(a[i],i 1)); //动态生成OPTION加到select中 , 第一个参数为Text,第二个参数为Value值.
}
}
}
function displayCity() {//将获取的数据动态增加至select
if (request.readyState == 4) {
if (request.status == 200) {
var a=new Array;
var b=request.responseText;
a=b.split(",");
document.getElementById("shi").length=1;//重新选择
document.getElementById("xian").length=1;//重新选择
if(document.getElementById("sheng").value!="province"){
var obj=document.getElementById('shi');
for(i=0;i
obj.options.add(new Option(a[i], document.getElementById("sheng").value*100 i 1)); //ocument.getElementById("sheng").value*100 i 1对应的是市的ID 。
}
【php省市数据库 php的数据库在哪个目录下】}
}
}
function displayCounty() {//将获取的数据增加至select
if (request.readyState == 4) {
if (request.status == 200) {
var a=new Array;
var b=request.responseText;
a=b.split(",");
document.getElementById("xian").length=1;
if(document.getElementById("sheng").value!="province"document.getElementById("shi").value!="city"){
var obj=document.getElementById('xian');
for(i=0;i
obj.options.add(new Option(a[i],i 1001));
}
}
}
}
getDetails.php代码:
?php
header("Content-Type: text/html; charset=gb2312");
$conn = new COM("ADODB.Connection") or die("Cannot start ADO");
$connstr = "Provider=SQLOLEDB;Persist Security Info=False;User ID=root;Password=123456;Initial Catalog=area;Data Source=localhost";
if($_REQUEST['ID']==0){//获得省列表
$conn-Open($connstr); //建立数据库连接
$sqlstr = "select name from Province"; //设置查询字符串
$rs = $conn-Execute($sqlstr); //执行查询获得结果
$num_cols = $rs-Fields-Count(); //得到数据集列数
$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){//获得省对应的市列表
$conn-Open($connstr); //建立数据库连接
$sqlstr = "select name from City where cid=".$_REQUEST['ID']; //设置查询字符串
$rs = $conn-Execute($sqlstr); //执行查询获得结果
$num_cols = $rs-Fields-Count(); //得到数据集列数
$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){//获得省市对应的县列表
$conn-Open($connstr); //建立数据库连接
$sqlstr = "select name from County where cid=".$_REQUEST['ID']; //设置查询字符串
$rs = $conn-Execute($sqlstr); //执行查询获得结果
$num_cols = $rs-Fields-Count(); //得到数据集列数
$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;
}
?
数据库设计,表格Province表,City表,County表 。
要求:Province表需要id和name,id建议从1至34 , 例如北京id为1,广东id为2,以此类推;
City表需要id,name和cid,id为cid*100 1,cid为该市的上级,例如深圳的上级为广东省,cid为2的话,深圳的id就是201,以此类推 。
County表需要id,name和cid,因为是三级的关系,id可以随意,建议从10001开始自增 。cid为所在上级,例如宝安区的cid为201,龙岗区的cid也为201;
截图:
HTML效果:
完成后效果:
php怎么写出全国的城市地区?require 'city.php';
// 连接数据库(PDO)
$pdo=new PDO('mysql:host=localhost;dbname=city','root','root');
$pdo-exec('set names utf8');
$pdo-setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE,PDO::FETCH_ASSOC);
// 实例化城市类
$c=new city();
$result=$c-mycity();
$city_id = 0;
foreach ($result as $k=$value) {
if(count($value) == count($value,1)){
$sql="insert into city_province (province) value ('{$value['province_name']}')";
$smt=$pdo-prepare($sql);
$smt-execute();
}else{
$sql11="insert into city_province (province) value ('{$value['province_name']}')";
$smt11=$pdo-prepare($sql11);
$smt11-execute();
foreach ($value['city'] as $v=$value1) {
$sql2="insert into city_name (name,province_id) values ('{$value1['city_name']}','{$k}')";
$smt2=$pdo-prepare($sql2);
$smt2-execute();
$city_id= 1;
echo $city_id.'br';
if(!empty($value1['area'])){
foreach ($value1['area'] as $valu1e2) {
$sql3="insert into city_area (area,city_id) values ('{$valu1e2}','{$city_id}')";
$smt3=$pdo-prepare($sql3);
$smt3-execute();
}
}
}
}
}
城市类太大php省市数据库了 , 发不php省市数据库了 。
php省市数据库我是把省、市、地区分别存在三个数据表中(我是新手,刚自己写php省市数据库的)
怎么用php读取数据库方式动态生成省市县三级联动选择框需要使用到ajax 。到网上查下,一堆 。代码是固定的 。
数据库设置
id,area,areaname
1 210000辽宁省
2 210100沈阳市
3 210104 大东区
select name='area1' id='area1' onchange="get_area2(this.value);"
这里读取省的数据
$sql="select area,areaname from area where right(area,4)='0000'";
/select
select name='area2' id='area2 'onchange="get_area(this.value);"
这里根据ajax读取数据,开始的时候是空的
/select
select name='area' id='area'
这里根据ajax读取数据,开始的时候是空的
/select
方法:
1,首先写get_area2 的js 代码,这里就用到ajax读取,这里获取的数据是区域代码的前两位代码(比如:21)
这个在根据这个21的参数,读取表中相关的市,
$sql="select area,areaname from area where left(area,2)='21' and right(area,2)='00'";
这个语句读取出来21的市代码
2,同一读取出来区的代码
关于php省市数据库和php的数据库在哪个目录下的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息 , 记得收藏关注本站 。

    推荐阅读