Eğer checkbox sayısı input sayısına eşitse ve checkbox name ve input name değerleri örneğin
<input type="checkbox" name="checkbox[]">
<input type="checkbox" name="quanity[]">
şeklinde ise
<?php
if($_POST){//to run PHP script on submit
$qua = $_POST['quantity'];
echo '<h2>ADDED</h2> ';
if(!empty($_POST['check_list']))
{
$i=0;
// Loop to store and display values of individual checked checkbox.
foreach($_POST['check_list'] as $selected)
{
echo "Product : " .$selected." \n";
if(isset($qua[$i])) echo "Quanity: ".$qua[$i]."\n";
$i++;
}
}
}
?>