Payment Mode
Please select your payment mode to proceed
$getbill= new FC_SQL;
$table = " $dbrb_order_dtls a, $dbrb_product_mst b";
$select = "select a.$dbrb_order_id,a.$dbrb_order_prodqty,a.$dbrb_order_prodcode,b.$dbrb_product_prodname,b.$dbrb_product_prodprice,b.$dbrb_product_proddisc,b.$dbrb_product_delcharges from";
$where = " where b.$dbrb_product_prodcode = a.$dbrb_order_prodcode and a.$dbrb_order_mid='".$mid."' and a.$dbrb_order_sessid ='".$_SESSION['memsess']."' and a.$dbrb_order_ordsts='A' " ;
//echo $select.$table.$where;
$getbill->query($table,$where,$extra="",$select);
if($getbill->num_of_rows()>0)
{?>
}
else
{
header("location:$sitename");
}
?>