</td>
<input type="text" name="billing" placeholder="Bill No." style= "background-color:; height:35px; width:100px;font-size:25px; "/>
</td>
<td style="width:100px; ">
<input type="checkbox" name="checked_id[]" value="<?php echo $row['id']; ?> "style=" background-color:; height:40px; width:100px;font-size:25px; "/>
</td>
我找不到文本框的值,但复选框可以。我怎么能通过php
来做到这一点答案 0 :(得分:0)
替换:
<input type="text" name="billing" placeholder="Bill No." style= "background-color:; height:35px; width:100px;font-size:25px; " value="value textfield"/>
PHP:
<?php $textfield = $_POST['billing']; ?>
答案 1 :(得分:0)
捕获计费输入值的正确方法是在PHP内部的服务器上捕获$ _POST ['billong']或$ _GET ['billing']。