Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.147.77.119
<?php
function savefeeheaddetails($aobj_context)
{
session_start();
$servcode = $_SESSION['fservcode'];
$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
include_once("/JSON.php");
$json = new Services_JSON();
$fee_arr = stripslashes($aobj_context->mobj_data["fee_arr"]);
$mobj_jsondata = $json->decode($fee_arr);
$fee_arr = get_object_vars($mobj_jsondata);
$queryd = "delete from servfee
where fservcode = '{$servcode}'";
$rst=$aobj_context->mobj_db->Execute($queryd);
for($k=1;$k<=count($fee_arr);$k++)
{
$query = "INSERT INTO servfee(fservcode,ffeecode,ffeedesc,forder) VALUES
('{$fee_arr[$k]->code}','{$fee_arr[$k]->fee}','{$fee_arr[$k]->desc}','{$fee_arr[$k]->order}')";
$rst = $aobj_context->mobj_db->Execute($query);
}
if($rst)
{
$success_msg= "Updated Successfully";
echo $aobj_context->mobj_output->ToJSONEnvelope($success_msg,0,"success");
}
else
{
$error_msg = "Some Failure as occured";
echo $aobj_context->mobj_output->ToJSONEnvelope($error_msg,-1,"error");
}
}
/* function loadservicedetails($aobj_context)
{
$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
session_start();
$userid = $_SESSION['userid'];
$query1 = "SELECT * FROM orientdetl
where fuserid = '{$userid}'";
$result1 = $aobj_context->mobj_db->GetAll($query1);
if($result1)
{
echo $aobj_context->mobj_output->ToJSONEnvelope($result1,0,"success");
}
else
{
$arr = "Some Failure as occured";
echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"error");
}
} */
?>
|