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 : 18.116.47.194
<?php
function saveservicedetails($aobj_context)
{
session_start();
$servcode = $_SESSION['fservcode'];
$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
include_once("/JSON.php");
$json = new Services_JSON();
$service_arr = stripslashes($aobj_context->mobj_data["service_arr"]);
$mobj_jsondata = $json->decode($service_arr);
$service_arr = get_object_vars($mobj_jsondata);
$queryd = "delete from servtype
where fservcode = '{$servcode}'";
$rst=$aobj_context->mobj_db->Execute($queryd);
for($k=1;$k<=count($service_arr);$k++)
{
$query = "INSERT INTO servtype(fservcode,fservname,fproc,fmaxdays,forder) VALUES
('{$service_arr[$k]->code}','{$service_arr[$k]->name}','{$service_arr[$k]->proc}','{$service_arr[$k]->days}','{$service_arr[$k]->order}')";
//var_dump($query);die();
$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");
}
} */
?>
|