Answers for "foreach array for 3 or more"

PHP
0

@foreach 1 numper

$i = 0;
foreach ( $signatures as $signature ) {
    if($i==10){
        break;
    }
    echo 'Signature ID: ' . $signature . $i;
    $i++;
}
Posted by: Guest on October-19-2020
0

foreach array for 3 or more

foreach ($product_id as $index => $h) {
    $v = $size_id[$index];
    $q = $quantity[$index];
    $insert_pending = "INSERT INTO pending_orders 
                            (cus_id,product_id,size_id,quantity,ip_address) VALUES 
                            ('$cus_id','$h','$v','$q','$ip_address')";
    $run2 = mysqli_query($con, $insert_pending);
}
Posted by: Guest on December-04-2020

Code answers related to "foreach array for 3 or more"

Browse Popular Code Answers by Language