Is there any reson that Session variable cant be used in payment Extra info php code??
for ($i=0;$i<$_SESSION['cart']["idx"];$i++) {
$c=$i+1;
echo '<input type="hidden" name="'.$item.$c._desc.'" value="'.$_SESSION['cart'][$i]["description"].'" />';
echo '<input type="hidden" name="'.$item.$c._price.'" value="'.$_SESSION['cart'][$i]['product_id'].'" />';
echo '<input type="hidden" name="'.$item.$c._qty.'" value="'.$_SESSION['cart'][$i]["quantity"].'" />';
}
Not sure what you need. What page did you put this code?