我正在尝试创建一个php代码,将一个邮政编码插入我的数据库,并将其与用户选择的城市和州相关联,但我已经在这里工作了将近两天而且我的智慧结束了。非常感谢任何帮助。
我有三张桌子:
|state |
|state_id INT | PK
|state VARCHAR(25)|
|city |
|city_id INT | PK
|city VARCHAR(45) |
|state_id INT | PK FK
|zip_code |
|zip_code_id INT |
|zip_code VARCHAR(10) |
|city_id INT | PK FK
|city_state_id INT| PK
我有一个php表单,其中包含邮政编码的输入以及城市和州的选择框(城市选项根据州选择进行级联):
<form action="address.php" method="post">
<h3>Add ZIP Code</h3>
Zip Code:<br />
<input type="text" name="zipCode" id="zipCode" value="" /><br /><br />
City:<br />
<select name="city" id="cityName">
</select>
<select name="state">
<?php foreach($rows as $row): ?>
<option value="<?php echo htmlentities($row['state'],ENT_QUOTES,'UTF-8');?>"><?php echo htmlentities($row['state'],ENT_QUOTES,'UTF-8');?>
</option>
<?php endforeach; ?>
</select>
<input type="submit" name="zipCode_submit" id="" value="Add Zip Code" />
</form>
这是处理表单的php:
if (!empty($_POST['zipCode_submit'])){
if(empty($_POST['zipCode'])){
die("Please enter a ZIP Code.");
}
if (empty($_POST['city']) || empty($_POST['state'])){
die("Please select a city and a state.");
}
//Check if zip code is already in database
$query = "SELECT 1 FROM zip_code WHERE zip_code = :zip_code";
$query_params = array(':zip_code' => $_POST['zipCode']);
$stmt = DB\query($query, $query_params, $db);
if($stmt){
die("This ZIP code is already entered.");
}
//Insert zip code into database
$query = "SOME Magical SQL query that I cannot seem to figure out...";
$query_params = array(':zipCode' => $_POST['zipCode'], ':city' => $_POST['city'], ':state' => $_POST['state']);
$stmt = DB\query($query, $query_params, $db);
}
这是我必须处理查询的一些代码:
function query($query, $query_params, $db){
try{
$stmt = $db->prepare($query);
$stmt->execute($query_params);
return ($stmt->rowCount() > 0) ? $stmt : false;
}catch(PDOException $ex){
//On production remove .getMessage().
die("Failed to run query: " . $ex->getMessage());
}
}
对于我似乎无法弄清楚的神奇的SQL查询,我尝试了几个不同的查询(我对MySQL比较新,所以我没有尝试过任何太高级的查询)。但这是我认为最接近的:
INSERT INTO zip_code (zip_code, city_city_id, city_state_state_id) SELECT zip_code, city_city_id, city_state_state_id
FROM zip_code
JOIN (city, state)
ON zip_code.city_city_id = city.city_id
AND zip_code.city_state_state_id = state.state_id
WHERE zip_code.zip_code = :zipCode
AND city.city = :city
AND state.state = :state
同样,我正在尝试创建INSERT查询,该查询使用邮政编码输入字段中的数据以及用户选择的城市和州的名称。我似乎无法理解如何将城市和州的名称与城市和国家ID配对,从一个查询中选择其他表...
再次,非常感谢任何帮助。谢谢。
答案 0 :(得分:1)
而不是为<option value="">
提供州名,请在其中提供 state_id 。然后就完成了。
<select name="state">
<?php foreach($rows as $row): ?>
<option value="<?php echo $row['state_id']; ?>"><?php echo htmlentities($row['state'],ENT_QUOTES,'UTF-8');?>
</option>
<?php endforeach; ?>
</select>
在您提交时,表单会将所选州的ID发布到该页面。因此,您无需再次编写状态名称并再次获取状态ID。你可以直接使用它。在城市的情况下也类似
答案 1 :(得分:1)
试试这个
$city=$_POST["CITY_ID"];
$state_id=$_POST["STATE_ID"]
直接在select命令中输入选择的邮政编码值,如果zipcode为8则
INSERT INTO zip_code (zip_code, city_city_id, city_state_state_id)
(SELECT 8,city.city_id,state.state_id FROM city,state where city.state_id=state.state_id and city.city_id='$city'and state_id='$state_id')