<?php $arr_val1 = array();$arr_val2 = array(); while($rows = mysql_fetch_assoc($rs_prd)) {$arr_val1[] = $rows['quantity'];$arr_val2[] = $rows['amount']; $is_handeling=1;?>
We have a piece of code that is supposed to add a "handling" charge when someone purchases a product. For every product they purchase, another handling charge occurs...so far it will only show for (1) handling charge even if there is (4) products.
Any help would be greatly appreciated. Thanks in advance.