Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End datatables and tabletools Reply To: datatables and tabletools

#150478
Rohithzr
Participant
function getBalance($cId){
    $qry = "SELECT COUNT( 
            STATUS ) AS balstatus
            FROM payments
            WHERE STATUS = 1
            AND cId = ".$cId.";";
    $res = mysql_query($qry);
    return $res;
}

this is the inline looped query i was reffering to