谁能告诉我代码中是否有任何错误。因为我认为 $ _POST 没有正确定义,因为即使有一些值它也没有跳过第一个 IF
for($i=1; $i<=15; $i++) {
$hbs = "other_text".$i;
if($_POST['other_text'.$i]]=="") {
echo "You didn't eneter quantity";
die();
}
if(!is_int($_POST['other_text'.$i]) || isset($_POST['vin'.$i])) {
$vins .= '<tr><td>'.$_POS['vin_lbl'.$i].'</td><td>'.$_POS['other_text'.$i].'</td></tr>';
}
else {
echo "Incorrect data for quantity. \n Please go back.";
}
}
现在告诉我未定义的索引:other_text1 所以我检查了 html 中的表单,这是文本框的代码<input type="text" value="1" disabled name="other_text1" style="width:15px; padding:1px; height:10px; font-size:9px; background-color:#FFF; box-shadow:none; ">