JIG Barcode:-6ren">
gpt4 book ai didi

php - 无法将数据发送到另一个页面

转载 作者:行者123 更新时间:2023-11-28 23:33:20 24 4
gpt4 key购买 nike

我想将隐藏数据和用户输入数据发送到另一个页面。首先,我尝试只进行一次用户输入,然后系统可以按我的要求发送数据。

<h1><strong>Please scan barcode on JIG</strong></h1>
<table>
<form action="productjit21.php" method="post" name="check2"/>
<input type="hidden" name="productnumber" value="<?php echo $productnumber; ?>">
<tr><td>JIG Barcode</td><td>:</td><td><input type="text" name="jitcode2" maxlength="50"/></td></tr>
</table>

使用上面的代码,我可以发送用户和隐藏数据。但是,当我为用户输入添加新行时,它无法发送数据。

<h1><strong>Please scan barcode on JIG</strong></h1>
<table>
<form action="productjit21.php" method="post" name="check2"/>
<input type="hidden" name="productnumber" value="<?php echo $productnumber; ?>">
<tr><td>JIG Barcode</td><td>:</td><td><input type="text" name="jitcode1" maxlength="50"/></td></tr>
<tr><td>JIG Barcode</td><td>:</td><td><input type="text" name="jitcode2" maxlength="50"/></td></tr>
</table>

我没有创建提交按钮,因为我们想使用条形码扫描仪。我认为提交按钮不是问题,因为当我只创建一个用户输入时,系统可以在没有提交按钮的情况下运行。

最佳答案

与其立即关闭表单标签,不如尝试像这样将输入包装在表单标签中

<form action="productjit21.php" method="post" name="check2">
<input type="hidden" name="productnumber" value="<?php echo $productnumber; ?>">
<tr><td>JIG Barcode</td><td>:</td><td><input type="text" name="jitcode1" maxlength="50"/></td></tr>
<tr><td>JIG Barcode</td><td>:</td><td><input type="text" name="jitcode2" maxlength="50"/></td></tr>
</form>

关于php - 无法将数据发送到另一个页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36637745/

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