0xV3NOMx
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.216.92.5


Current Path : /proc/thread-self/root/var/www/html/orms-gug/src/
Upload File :
Current File : //proc/thread-self/root/var/www/html/orms-gug/src/researchdetails.php

<?php

function saveresearchdetails($aobj_context)
{
	//session_start();
	$userid = $_SESSION['userid'];
	$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);  
	include_once("/JSON.php");
	
	$json = new Services_JSON();
	$research_arr = stripslashes($aobj_context->mobj_data["research_arr"]);
	$mobj_jsondata = $json->decode($research_arr);
	$research_arr = get_object_vars($mobj_jsondata);
	
	$queryd = "delete from researchexp  
	where fuserid = '{$userid}'";
	$rst=$aobj_context->mobj_db->Execute($queryd); 
	
	
	 for($k=1;$k<=count($research_arr);$k++)
	{
		$query = "INSERT IGNORE INTO researchexp(fuserid,fposition,femoluments,finstname,ffromdate,ftodate,fnoyears) VALUES 
		('{$userid}','{$research_arr[$k]->Position}','{$research_arr[$k]->Emoluments}','{$research_arr[$k]->Uname}',
		date_format(str_to_date('{$research_arr[$k]->From}','%d/%m/%Y'),'%Y-%m-%d'),date_format(str_to_date('{$research_arr[$k]->To}','%d/%m/%Y'),'%Y-%m-%d'),
		'{$research_arr[$k]->Noyears}')";
		 $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 loadResearchExpDetails($aobj_context)
{
	$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);  
	//session_start();
	$userid = $_SESSION['userid'];
	
	$query1 = "SELECT * FROM researchexp 
	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"); 
	}
} 
?>