我的表格中很少有字段说
<form action="?code='.$order_id.'" method="post">
<input type="text" name="length" placeholder="'.$row_order['length'].'">
<input type="text" name="breadth" placeholder="'.$row_order['breadth'].'">
<input type="text" name="width" placeholder="'.$row_order['width'].'">
<input type="submit" name="save" value="Save">
</form>
我从数据库中检索长度、宽度和宽度的值,并通过占位符显示它。现在我想如果用户输入一些值,比如长度,那么只有 DB 中的长度字段会影响其他完整的字段。
现在,如果我将长度的值设置为 50 并“保存”它,那么即使我在更新之前有宽度 = 40 和宽度 = 30,它也会显示长度 = 50、宽度 = 0 和宽度 = 0。