gpt4 book ai didi

php - 如何在提交时交互两个选择框的 ID

转载 作者:行者123 更新时间:2023-11-29 20:08:19 24 4
gpt4 key购买 nike

我在 HTML 表单中至少有两个选择框可以通过 POST 插入,但用户可以添加更多选择框。现在我必须显示每个插入的 id 之间的关系。

enter image description here

就像我们插入了 1,4,9,6 id 一样。所以我希望将其插入到两列的表格中,如下所示:

(1-4) (1-9) (1-6) (4-9) (4-6) (9-6)

最佳答案

$text = $_POST['text'];

$textname = explode(",", $text);

if ($textname > 0) {
for ($i = 0; $i < count($textname); $i++) {
"Piece $i = $textname[$i] <br />";
..... insert query....

我正在 Piece $i 中获取 POST 值...如何将其插入到代码中的该数组中

关于php - 如何在提交时交互两个选择框的 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40260833/

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