数据库之PHP联动
在PHP中实现数据库联动通常意味着创建两个或多个下拉菜单(<select>
标签),其中一个下拉菜单的选项依赖于另一个下拉菜单的选择。以下是一个简单的例子,展示了如何使用PHP和MySQL创建这样的联动效果:
首先,假设你有两个数据库表:country
和 city
,其中 city
表中有一个指向 country
表主键的外键。
// 连接数据库
$db = new mysqli('localhost', 'username', 'password', 'database');
// 检查连接
if ($db->connect_error) {
die('连接失败: ' . $db->connect_error);
}
// 获取所有国家
$sql = "SELECT * FROM country";
$result = $db->query($sql);
// 创建Country下拉菜单
echo '<select name="country" id="country" onchange="loadCities()">';
echo '<option value="">选择一个国家</option>';
while ($row = $result->fetch_assoc()) {
echo '<option value="' . $row['id'] . '">' . $row['name'] . '</option>';
}
echo '</select>';
// 创建City下拉菜单
echo '<select name="city" id="city">';
echo '<option value="">选择一个城市</option>';
echo '</select>';
// 关闭数据库连接
$db->close();
然后,你需要用JavaScript实现loadCities
函数,这个函数会在Country下拉菜单值改变时被调用,并通过AJAX加载相应城市数据:
function loadCities() {
var countryId = document.getElementById('country').value;
var xhr = new XMLHttpRequest();
xhr.open('GET', 'get_cities.php?country_id=' + countryId, true);
xhr.onload = function() {
if (this.status == 200) {
document.getElementById('city').innerHTML = this.responseText;
}
};
xhr.send();
}
最后,你需要创建一个get_cities.php
文件来处理AJAX请求并返回相应的城市选项:
// 连接数据库
$db = new mysqli('localhost', 'username', 'password', 'database');
// 检查连接
if ($db->connect_error) {
die('连接失败: ' . $db->connect_error);
}
// 获取国家ID
$countryId = $_GET['country_id'];
// 获取该国家的所有城市
$sql = "SELECT * FROM city WHERE country_id = ?";
$stmt = $db->prepare($sql);
$stmt->bind_param('i', $countryId);
$stmt->execute();
$result = $stmt->get_result();
// 创建City下拉菜单的选项
echo '<option value="">选择一个城市</option>';
while ($row = $result->fetch_assoc()) {
echo '<option value="' . $row['id'] . '">' . $row['name'] . '</option>';
}
// 关闭数据库连接
$stmt->close();
$db->close();
这个简单的例子展示了如何使用PHP和MySQL创建一个Country和City的联动下拉菜单。当用户在Country下拉菜单中选择一个
评论已关闭