Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个网站,任何人都可以提出问题,任何人都可以回答。网站索引充满了问题和答案。
我成功地向mysql提出了一个问题。我将所有问题的答案保存在不同的 txt 文档中作为 answer_$id.txt。
我的问题是,当我单击答案按钮时,我如何 $_REQUEST 按钮的 id,以便我可以将答案添加到该 id 的 txt 文档中。
您可以通过使用隐藏的输入类型来简单地实现这一点。
使用<input type="hidden" value="<?php echo $id;?> name="question_id"/>
<input type="hidden" value="<?php echo $id;?> name="question_id"/>
并且您可以在提交答案时获取问题的 ID $_REQUEST。无需在按钮的 ID 中添加问题 ID。
$_REQUEST