nasıl php GET değerler kümesi döngü için

0 Cevap php

Ben programı gibi basit bir online mağaza yapıyorum. Eğer ben benim programda girişler döngü yaptık böylece yapacağını ne önerebilirsiniz.

I'm still using get so that I could see how the data looks like, I'll change it to post later. This is what the url looks like, when I commit the buying of all the products added in the cart: http://localhost/pos/php/checkout.php?ids=2;&qoh=12;&qbuys=&ids=6;&qoh=2304;&qbuys=304&ids=4;&qoh=699;&qbuys=99

Ben yukarıdaki url gibi bir şey vardı, bu sadece bir ürünü işlemek için kullanıyorum kodudur, bu işe yaramazsa:

<?php

$id=$_GET['ids'];
$qtyhnd=$_GET['qoh'];
$qtytbuy=$_GET['qbuys'];
$left=$qtyhnd-$qtytbuy;



if($qtyhnd>=$qtytbuy){
$update=query_database("UPDATE prod_table SET  QTYHAND='$left' WHERE PID='$id'", "onstor", $link);
}


?>

Eğer daha fazla bilgiye ihtiyacınız olursa, teşekkürler yorum lütfen

0 Cevap