gpt4 book ai didi

php - 在 PHP 中选择一行并将该数据放入表单/文本字段中

转载 作者:行者123 更新时间:2023-11-29 22:42:46 24 4
gpt4 key购买 nike

我有一个页面,其中有一个表格,每行都有一个相应的按钮。我试图选择该特定行并将数据放入表单的文本字段中,但是查询似乎不起作用。任何帮助深表感谢。谢谢。这是到目前为止的代码:

    <?php
if (isset($_POST['add'])){
unset($_POST['add']);

$id =$_POST['bookID'];
$q = "SELECT * FROM book WHERE book.bookID = $id";
$query1 = $db->query($q);
$data = $query1->fetch(PDO::FETCH_BOTH);


}
?>

<form>

<form action = "basket.php" method="post">
<p><input type="text" name="title" value="<?php print($data['Title']); ? >"/></p>

</form>

<input type="submit" name="add" value="Add to Field" />
</form>

最佳答案

改变我错过的事情。

 $db->query($q);
$db->execute(); // this line is missing you have to execute

$data = $db->fetch(PDO::FETCH_ASSOC); // no point fetching both when you know the names.

关于php - 在 PHP 中选择一行并将该数据放入表单/文本字段中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29241167/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com