I am trying to auto refresh a div which contains the Sub Total of item but its not working/refreshing the div. I tried many things but its not ready to work.
I am refreshing the Grand Total which updates/refreshes perfectly fine and if i removes a sub item of a main item it changes the Grand Total fine but does not change the Sub Total of the items.
I am using the separate refresh code for the grand total.
My codes are below:
index.php
<?php
$order_temp = mysql_query("select * from temp_cart where ses_mem='".$ses_mem."' order by id");
while ($torder = mysql_fetch_array($order_temp)) {
$prITTD = $torder['id'];
$prITTC = $torder['item_id'];
?>
<script>
function refreshTable() {
$('.tableHolder').load('itemtotal_cart_checkout.php?item_id=' + <?php echo $prITTC; ?>, function() {
setTimeout(function () { refreshTable() }, 1000);
});
}
</script>
<div class="amount tableHolder">
</div>
<?php } ?>
itemtotal_cart_checkout.php
<?php
@session_start();
include('inc/db.php');
$ses_mem = $_SESSION['ses_user_id'];
//session_id();
$getItem = $_GET['item_id'];
$order_temp = "select * from temp_cart where item_id='".$getItem."' AND ses_mem='".$ses_mem."' order by id";
$tordera = $db->query($order_temp);
while ($torder = $tordera -> fetch_assoc()){
$prITTD = $torder['id'];
$prITTC = $torder['item_id'];
$prIDTC = $torder['price_id'];
$qtyT = $torder['qty'];
?>
<span class="amount">
<?php
$chTPaa = mysql_query("
select choice_id
FROM temp_choices
WHERE item_id = '$getItem'
AND ses_mem = '$ses_mem'
group by choice_id
");
$numRows = mysql_num_rows($chTPaa);
while ($chGETaa = mysql_fetch_assoc($chTPaa)){
$temp[] = $chGETaa['choice_id'];
$thelist = implode(",",$temp);
}
if ($numRows > 0){
$sumToCq1 = mysql_query("
SELECT sum(p.price) as sTotal, t.item_id as item_id
FROM temp_cart as t, temp_choices tc, choice_price p
WHERE t.ses_mem='".$ses_mem."'
AND t.item_id = '".$getItem."'
AND tc.item_id = '".$getItem."'
AND p.id = tc.choice_id
");
$sumToC1 = mysql_fetch_assoc($sumToCq1);
$sumToNR = count($sumToCq1);
$choiceOptionsTotal1 = $sumToC1['sTotal'];
$tsl = ($choiceOptionsTotal1*$qtyT)+($qtyT*$prIDTC);
}else{
$tsl = $qtyT*$prIDTC;
}
//number_format($tsl, 3);
$altsl = number_format($tsl, 3, '.', '');
echo $altsl;
?>
</span>
<?php } ?>