how to loop through a set of GET values in php
I'm making a simple online store like program. What can you suggest that I would do so that I can loop through the inputs I've made in my program. 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 This is the code that I'm using to commit only one product, it doesn't work when I had something like in the above url: <?php $id=$_GET['ids'];