我正在尝试为我的烹饪书添加一些功能,但我想不出包含我点击编辑的ID的方法。
该表被称为“厨师”,并且是3列; -id as auto_increment - 名称 - 国家
然后,我在index.php上有一个列表,我在这里显示了厨师名单:
<?php
$chefs = get_chefs();
?>
<h3>Chefs' list</h3>
<ul>
<?php foreach ($chefs as $chef) {
echo '<li>' . $chef['name'] . ' from ' . $chef['country'] . '<a class="toLink" href="edit_chef.php?id=' . $chef['id'] . '" title="edit chef">Edit chef</a>' . '</li>';
} ?>
</ul>
在函数php上,我有一个get_chefs()函数和一个find_chef_by_id($ id)函数:
function get_chefs() {
include'db_connection.php';
try {
return $conn->query("SELECT * FROM chefs");
} catch (PDOException $e) {
echo 'Error:' . $e->getMessage() . "<br />";
return array();
}
return true;
}
function find_chef_by_id($id = ':chef_id') {
include 'db_connection.php';
$sql = 'SELECT * FROM chefs WHERE id=:chef_id';
try {
$results = $conn->prepare($sql);
$results->bindParam(':chef_id', $chef_id, PDO::PARAM_INT);
$results->execute();
} catch(PDOException $e) {
echo 'Error: ' . $e->getMessage() . '<br />';
return array();
}
return $results->fetchAll(PDO::FETCH_ASSOC);
}
为了处理厨师的版本,我创建了一个名为edit_chef.php的文件:
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$name = filter_input(INPUT_POST, 'name', FILTER_SANITIZE_STRING);
$country = filter_input(INPUT_POST, 'country', FILTER_SANITIZE_STRING);
if(empty($name)) {
$error_message = "Chef's name can not be empty";
} elseif (empty($country)) {
$error_message = "Country can not be empty";
}else {
if(edit_chef($name, $country)) {
header('Location: index.php');
exit;
} else {
$error_message = "Could not update chef";
}
}
}
include 'includes/header.php';?>
<div class="col-container">
<h1>Edit chef</h1>
<?php
if (isset($error_message)) {
echo '<p class="message">' . $error_message . '</p>';
}
$chefs = get_chefs();
foreach ($chefs as $chef) {
$id = find_chef_by_id($chef["id"]);
?>
<form method="POST" action="edit_chef.php?chef=<?php echo urldecode($id); ?>">
<div>
<label for="name" class="required">Name</label>
<input name="name" type="text" value="<?php echo htmlentities($chef["name"]); ?>" />
</div>
<div>
<label for="country" class="required">Country</label>
<input name="country" type="text" value="<?php echo htmlentities($chef["country"]); ?>" />
</div>
<button class="submit" type="submit" name="submit">Submit</button>
</form>
</div>
但此刻,我不知道是不是因为我不应该使用foreach循环,或者表单的$ id值不应该是find_chef_by_id($ chef [“id”]),当我点击编辑主厨,它会转到右侧网址“http://localhost/cooking_book/edit_chef.php?id=1”,但它会显示每个厨师的表单,而不仅仅是我点击的那个。
我做错了什么?
谢谢
答案 0 :(得分:2)
第一个错误是在find_chef_by_id函数中使用$ chef_id而不是$ id,你需要修复它。
另一件事是,如果您已经知道通过该地址传递的ID,我不明白为什么您需要循环数据库中的所有厨师?
例如: 在edit_chef.php中,您需要捕获GET数据:
<?php
//Get the ID from the URL
$chefID = null;
if ( isset($_GET['id']) )
$chefID = $_GET['id'];
if ( $chefID == null )
die ( "oops, Chef ID is null, bad request?" );
//Now find the chef we need
$theChef = find_chef_by_id($chefId);
//do stuff
?>
这应该是你需要解决的全部问题。
同样在你的表单中添加一个隐藏文本字段,用于回显你通过GET请求获得的当前ID:
<input type="hidden" name="chefId" value="<?=$chefId?>">
使用此方法,您可以在下次用户按下编辑表单上的“提交”按钮时从POST数据中提取厨师ID,因此您不需要在chef_edit内的表单上使用自定义Action =“blah”。 PHP