我正在建立一个食谱网站,其中食谱存储在一个表中,成分存储在另一个表中,然后第三个表将两者与成分的数量和单位联系起来。IE。配方表 - 配方 ID、名称、描述等
成分表 - 成分 ID、名称、描述等
配方成分表 - 配方成分 ID、配方 ID、成分 ID、数量、单位
所以对于一个食谱,我可以有多种成分。为了显示食谱,我在 recipe_ingredient 表中查询匹配的 recipeID,然后从中获取相应的成分 ID 并查询每个成分表:
<table id="ingredients_table">
<tr>
<th>Ingredient</th>
<th>Quantity</th>
<th>Unit</th>
<th>Comment</th>
</tr>
<?php
foreach ($ingredient as $value) {
$ingredient_name = get_ingredient_name($value['IngredientID']);
echo '<tr>';
echo '<td>'.$ingredient_name.'</td>';
echo '<td>'.$value['Quantity'].'</td>';
echo '<td>'.$value['Unit'].'</td>';
echo '<td>'.$value['Comments'].'</td>';
echo '</tr>';
echo "\n";
}
?>
</table>
我有以下功能
function get_ingredients($id) {
//gets the ingredient ids, quanitites, units and comments
$result = mysql_query("SELECT * FROM `recipe ingredients` WHERE RecipeID = $id") or trigger_error(mysql_error());
$array = array();
while($row_ids = mysql_fetch_assoc($result)){
$array[] = $row_ids;
}
return $array;
}
function get_ingredient_name($id) {
//get an ingredient name given its ID
$result = mysql_query("SELECT * FROM `ingredients` WHERE IngredientID = $id") or trigger_error(mysql_error());
$row = mysql_fetch_assoc($result);
$ingredient_name = $row['Ingredient'];
return $ingredient_name;
}
问题是我无法创建一个更新成分数量或名称的表格。
我目前有这个,但它不起作用:
function update_ingredients($Ingredient_ID, $id, $RecipeIngredientID, $Ingredient, $Quantity, $Unit, $Comment) {
$ingredient_name = mysql_query("UPDATE `ingredients` SET Ingredient='$Ingredient' WHERE IngredientID='$IngredientID'") or trigger_error(mysql_error());
$ingredient_details = mysql_query("UPDATE `recipe ingredients` SET Quantity='$Quantity', Unit='$Unit', Comment='$Comment' WHERE RecipeIngredientID='$RecipeIngredientID'") or trigger_error(mysql_error());
}
and
if (isset($_POST['RecipeName'])) {
foreach ($ingredient as $value) {
$ingredient_name = get_ingredient_name($value['IngredientID']);
$Ingredient = userData($_POST['Ingredient']);
$Quantity = userData($_POST['Quantity']);
$Unit = userData($_POST['Unit']);
$Comment = userData($_POST['Comment']);
$update_ingredients = update_ingredients($Ingredient_ID, $id, $RecipeIngredientID, $Ingredient, $Quantity, $Unit, $Comment);
echo $update_ingredients;
}
谁能帮忙!