从数组形式的PHP验证

时间:2013-07-27 10:09:37

标签: php mysql arrays

我有这样的代码

第一次循环计数发布数组的数量:

for($i = 0; $i < $jumlah_qty ;$i++) {
    if(!empty($qty[$i]) && !empty($id_cat[$i])) {

插入预订:

        $insert_booking_hd = $user_class->select($az);
        $id_cates = $id_cat[$i];
        for($b = 0;$b<$qty[$i];$b++) {

首先验证是否设置了$_POST[$id_cates)运行此代码:

            if(isset($_POST[$id_cates."".$b])){
                $id_seat = $_POST[$id_cates."".$b];

在$ select_seat中找到座位号,并查找$ seat_number中是否存在座位号:

                $select_seat = $user_class->select($query);
                $seat_number = $user_class->select($querys);
                $row_seat = $user_class->numrows($select_seat);
                $row_seat2 = $user_class->numrows($seat_number);
                if($row_seat>0) {
                    $update_seat = $user_class->update($update_false);
                    $bol[$b] = FALSE;
                } else { 
                    if( $row_seat2>0 ) {
                        $insert_booking_dt = $user_class->insert($insert);
                        $update_seat = $user_class->update($update_true);
                        $bol[$b] = TRUE;
                    } else {
                        $bol[$b] = FALSE;
                    }
                }    
            } else {
                $insert_booking_dt = $user_class->insert($insert_without_seat);
                $bol[$b] = TRUE;
            }

            if($bol[$b]) {
                echo "FALSE";
                header("location:../../../print.php?id=$id_booking");
            }
            else {
                echo "WRONG";
                header("location:../../../event.php?msg=Same seat number");
            }
        }
    }
}

我的php验证有什么问题吗?

因为如果输入$id_seat数组,它将始终重定向到print.php,尽管验证为假

例如,如果我输入3个数组,然后我回显FALSE WRONG FALSE FALSE

仍然重定向到print.php而不是重定向到event.php

如果其中一个数组变为WRONG然后重定向到event.php,我怎么读?

1 个答案:

答案 0 :(得分:0)

  
    

如果一个数组变为错误然后重定向到event.php,我怎么读?

  

您可以{for for循环中break

而不是:

else {
    echo "WRONG";
    header("location:../../../event.php?msg=Same seat number");
}

你可以尝试:

else {
    echo "WRONG";
    header("location:../../../event.php?msg=Same seat number");
    break 2;
}