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 : 3.149.249.84


Current Path : /var/www/oasis/src_old/
Upload File :
Current File : /var/www/oasis/src_old/ack_admentry_application.php

<?php
class challan_entries
{
    
	function __construct($aobj_context)
	{
		session_start();
		$this->aobj_context=$aobj_context;
		$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
		$this->user_id=$_SESSION['user_id']	;		  
		$this->collcode=$_SESSION['collcode'];	
		$this->college_code=$_SESSION['collcode'];	
		$this->log_name = $_SESSION['usr'];			
	}
		
	
	function DisplayAdmentryApplication()
	{
	 	$adm_degree = trim($this->aobj_context->mobj_data["degree"]);
	 	$type       = trim($this->aobj_context->mobj_data["type"]);
	 	$cnd = "";
	 	
	 	if($type == 'wom')
	 	{
	 		$query = "SELECT c.fdegree, c.fname, IFNULL(c.fid,'') AS fmobileno,
	 				IFNULL(c.femail,'') AS femailid
				FROM collstudnb c LEFT JOIN studadm s ON c.fcollcode = s.fcollcode 
				AND c.fdegree = s.fdegree
				AND s.fcontact_no = c.fid
				WHERE c.fcollcode = '{$this->collcode}' 
				AND c.fdegree = '{$adm_degree}' AND IFNULL(s.fcollcode,'') = '' 
				AND IFNULL(s.fdegree,'') = ''";
	 	}
	 	else if($type == 'wm')
	 	{

			$query = "SELECT c.fdegree, c.fname, IFNULL(c.fmobileno,'') AS fmobileno,IFNULL(c.femail,'') AS femailid
			FROM collstud c LEFT JOIN studadm s ON c.fcollcode = s.fcollcode 
			AND c.fdegree = s.fdegree
			AND c.fmobileno = s.fcontact_no
			WHERE c.fcollcode = '{$this->collcode}' 
			AND c.fdegree = '{$adm_degree}'  AND IFNULL(s.fcontact_no,'') = '' ";
	 	}
	 	else
	 	{
	 		$query = "SELECT s.fappno, c.fdegree, c.fname, 
	 		IFNULL(c.fmobileno,'') AS fmobileno,
	 		IFNULL(c.femail,'') AS femailid
			FROM collstud c inner JOIN studadm s ON c.fcollcode = s.fcollcode 
			AND c.fdegree = s.fdegree
			AND c.fmobileno = s.fcontact_no
			WHERE c.fcollcode = '{$this->collcode}' 
			AND c.fdegree = '{$adm_degree}'  AND IFNULL(s.ffinsub,'F') = 'F' 
			and ifnull(c.fdeleted,'') <> 'T'";

	 	}	

		//var_dump($query);
		$lobj_get_data = $this->aobj_context->mobj_db->GetAll($query);

		
		//var_dump($query);
		$lobj_get_data = $this->aobj_context->mobj_db->GetAll($query);
 
		$str_reval.="<table style='padding:3px 4px 3px 3px;' class='tr_ventor_row' id='reval_table_data' width='100%' border='0' cellspacing='0' cellpadding='0'>";
		$str_reval.="<tr class='ui-state-default ui-jqgrid-hdiv'>";
		$str_reval.="<td align='center' style='padding:4px; border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Sl No</td>";
		$str_reval.="<td align='center' style=' font-size:11px; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Degree</td>";
		$str_reval.="<td align='center' style=' font-size:11px; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Student Name</td>";
		$str_reval.="<td align='center' style=' font-size:11px; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Mobile No.</td>";
		$str_reval.="<td align='center' style=' font-size:11px; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Email</td>";
		$str_reval.="<td align='center' style=' font-size:11px; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Action</td>";

		$str_reval.="</tr>";
 
		$k=0;
		$sl_no=1;
		if($lobj_get_data)
		{
			foreach($lobj_get_data as $ak=>$av)
			{
				if($type == 'EA')
				{
					$edit="<img  onclick='EditStudentDetails(\"{$av['fappno']}\",\"{$av['fdegree']}\", \"{$type}\")'  src='img/edit.png' title='Edit' style='width: 80px;height:25px' /> ";
				}
				else 
				{
					$edit="<img  onclick='AddEditStudentDetails(\"{$av['fdegree']}\", \"{$av['fmobileno']}\", \"{$av['fname']}\", \"{$type}\")'  src='img/edit.png' title='Edit' style='width: 80px;height:25px' /> ";
				}
				$challprint = "";
				if($k%2==0)
					$class='tbl_row1';
				else
					$class='tbl_row_alter1';

				$str_reval.="<tr>";		
				$str_reval.="<td class='{$class} tbl_row_new' style='text-align:center; border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px;' >{$sl_no}</td>";
				$str_reval.="<td class='{$class} tbl_row_new' style='text-align:left; border-left:0px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px;  ;text-align:center;  ' >{$av['fdegree']}&nbsp;</td>";
				$str_reval.="<td class='{$class} tbl_row_new' style='text-align:left; border-left:0px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px; ;  ;text-align:left; ' >{$av['fname']}</td>";
				$str_reval.="<td class='{$class} tbl_row_new' style='border-left:0px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px; font-size:11px;text-align:left; ' > {$av['fmobileno']}</td>";
				$str_reval.="<td class='{$class} tbl_row_new' style='text-align:left; border-left:0px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px;  ;text-align:left;  ' > {$av['femailid']}</td>";
				$str_reval.="<td class='{$class} tbl_row_new' style='text-align:left; border-left:0px solid #C5DBEC; border-right:1px solid #C5DBEC;  padding:2px;text-align:center; cursor:pointer; ' >{$edit}</td>";
				$str_reval.="</tr>";
				
				$sl_no++;
				$k++;
			}
		}else
		{
			$str_reval.="<td class='{$class} tbl_row_new' style='text-align:left; border-left:0px solid #C5DBEC; border-right:1px solid #C5DBEC; border-left:1px solid #C5DBEC;padding:2px;text-align:center; cursor:pointer; ' colspan = '6'><b>No deatils found for the given deatils.</b></td>";
				$str_reval.="</tr>";
		}				
		
		$str_reval.="</table>";
		$arr['html']=$str_reval;
		echo $this->aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); 	
		 
	}
		

 }
	
function DisplayAdmentryApplication($aobj_context)
{
    $class_obj=new challan_entries($aobj_context);
	$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); 
	$class_obj->DisplayAdmentryApplication();
}  

function getAdmentryApplication($aobj_context)
{
	$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); 	
	session_start();   //and FDELETED = 'F'
	$mobile = $aobj_context->mobj_data["mobile"]; 

	$degree = $aobj_context->mobj_data["degree"]; 
	$gender = stripslashes($aobj_context->mobj_data["gender"]);
	$name = $aobj_context->mobj_data["name"]; 
	$type = $aobj_context->mobj_data["type"]; 

	$arr['perdetl'] = array("mobile" => $mobile,"type" => $type, "degree" => $degree, "name" => $name);
	//var_dump($arr['perdetl']);
	$combination =  $lobj_get_student_details['combination'];

	$query3 = "SELECT FCATEGORY AS int_code,FDESCPN AS val FROM category 
	where ifnull(FDELETED,'') <> 'T' order by FCATEGORY asc ";
	$rst3 = $aobj_context->mobj_db->GetAll($query3);
	$arr['category'] = $rst3;

	$query3 = "SELECT distinct fdegree AS int_code,FDESCPN AS val FROM degree 
	where ifnull(fadmdeg,'') = 'T' and  fdegree = '{$degree}' 
	and ifnull(FDELETED,'') <> 'T' order by fdegree";
	$rst3 = $aobj_context->mobj_db->GetAll($query3);
	$arr['degree'] = $rst3;

	$query3 = "SELECT distinct fcombcode AS int_code,fcombdesc AS val FROM mascomb 
	WHERE fdegree = '{$degree}' AND IFNULL(FDELETED,'') <> 'T' ORDER BY fcombcode ";
	$rst3   = $aobj_context->mobj_db->GetAll($query3);
	$arr['mascomb'] = $rst3;

	$query4 = "select fboardcode as int_code, fboardname as val from masboard order by forder";
	$rst4   = $aobj_context->mobj_db->GetAll($query4);
	$arr['boards'] = $rst4;

	$query = "SELECT DISTINCT m.internal_code AS int_code, 
	FCERTDESC AS doc_type ,
	IFNULL(FFILENAME,REPLACE(REPLACE(FCERTDESC,' ','_'),'+','_')) AS FFILENAME
	FROM masdoc m
	where m.fdegree = '{$degree}'
	ORDER BY forder";
	$results = $aobj_context->mobj_db->GetAll($query);
	$arr['masdoc'] = $results;


	if($type == 'EA')
	{

		$get_student_details_slno = "SELECT 
		fappno AS student_entry_admno,
		fdegree as student_entry_degree_code,
		DATE_FORMAT(fadmdate,'%d/%m/%Y') AS student_entry_admdate,
		fdegree AS student_entry_degree_code,
		fgender = '{$gender}',
		fcombcode  AS combination,
		fname AS student_entry_name,
		FFATNAME AS student_entry_fname,
		FMOTNAME AS student_entry_mname,
		DATE_FORMAT(fdob,'%d/%m/%Y') AS student_entry_dob,
		FPHOTOPATH AS student_entry_photo,
		FSIGNPATH AS student_signature_photo,
		FRELIGION AS student_entry_religion,
		FGENDER AS student_entry_gender,
		FBLOOD_GROUP AS student_entry_blood_grp,
		FNATIONAL AS student_entry_national,
		FCASTE AS degree_category,
		FCATBIRTH AS student_entry_caste,
		FAADHARNO AS seAadharNumber,
		FAREA AS farea,
		FEMAIL AS student_entry_email,
		FCONTACT_NO AS student_entry_mobile,
		FMOBILE_NO AS student_entry_phone,
		FINCOME AS student_entry_fincome,
		ifnull(FPERMADD1,'') AS student_entry_per_add1,
		IFNULL(FPERMADD2,'') AS student_entry_per_add2,
		IFNULL(FPERMADD3,'') AS student_entry_per_add3,
		IFNULL(FPERDIST,'') AS student_entry_per_dist,
		IFNULL(FPERSATE,'') AS  student_entry_per_state,
		IFNULL(FPERPINCODE,'') AS  student_entry_per_pin,
		IFNULL(FCURRADD1,'') AS student_entry_comm_addr1,
		IFNULL(FCURRADD2,'') AS student_entry_comm_addr2,
		IFNULL(FCURRADD3,'') AS student_entry_comm_addr3,
		IFNULL(FCOMDIST,'') AS student_entry_comm_dist,
		IFNULL(FCOMPINCODE,'') AS student_entry_comm_pin,
		IFNULL(FCOMSTATE,'') AS student_entry_comm_state,
		FTYPEQUALEXAM AS seTypeOfQualifyingExam,
		FQUALEXREGNO AS seExamRegNo,
		FUNIVNAME AS seUniversityName,
		FQMONTH AS fmonth,
		FQYEAR AS fyear,
		FQMAXMARKS AS maxmarks,
		FQSECMARKS AS secmarks,
		FQPERCENTAGE AS percentage,
		ifnull(FCONSTYPE,'') as constype
		from studadm  
		where FCONTACT_NO ='{$mobile}' and FDEGREE='{$degree}' 
		and ifnull(fdeleted,'') <> 'T'
		and FCOLLCODE='{$_SESSION['collcode']}'";	 

		$lobj_get_student_details = $aobj_context->mobj_db->getRow($get_student_details_slno);

		$arr['perdetl'] = $lobj_get_student_details;

		$combination =  $lobj_get_student_details['combination'];
		$app_no		 =	$lobj_get_student_details['student_entry_admno'];

		$get_sub_total  = "select FTOTSUB from degree where FDEGREE= '{$degree}' and FEXAMNO='A'";
		$lobj_sub_total = $aobj_context->mobj_db->getRow($get_sub_total);
		
		$total_sub      = $lobj_sub_total['FTOTSUB'];
		
		$get_exsting_data = "select a.*,b.FSUBNAME,b.FSUBSHORT,FMANDATORY from 
		(select FDEGREE,FEXAMNO,FCOLLCODE,FSLNO,FSUBCODE from options
		where fappno = '{$app_no}' and FCOLLCODE='{$_SESSION['collcode']}' 
		and FEXAMNO='A' and FDEGREE='{$degree}') a
		left join 
		(select s.FDEGREE,
		FSUBCODE,FSUBNAME,FSUBSHORT ,FMANDATORY from degree d inner join subject s on 
		s.FDEGREE=d.FDEGREE  and  d.FEXAMNO=s.FEXAMNO
		where d.FDEGREE='{$degree}' and s.FEXAMNO='A') b 
		on a.FSUBCODE=b.FSUBCODE
		and a.FDEGREE=b.FDEGREE
		group by FSUBCODE limit {$total_sub}";
	 
		$lobj_get_exsting_data = $aobj_context->mobj_db->getAll($get_exsting_data);

		$get_true_sub_names="select FSUBCODE,FSUBNAME,FSUBSHORT ,FMANDATORY from degree d inner join subject s on 
		s.FDEGREE=d.FDEGREE  and  d.FEXAMNO=s.FEXAMNO
		where d.FDEGREE='{$degree}' and s.FEXAMNO='{$exam}' and FMANDATORY='T' group by  s.FSUBCODE
		union
		select s.FSUBCODE,s.FSUBNAME,s.FSUBSHORT ,'T' as FMANDATORY from degree d inner join subject s on 
		s.FDEGREE=d.FDEGREE  and  d.FEXAMNO=s.FEXAMNO
		left join mascomb m on m.FDEGREE=d.FDEGREE and m.fcombcode = '{$combination}'
		where d.FDEGREE='{$degree}'  and m.FSUBCODE = s.FSUBCODE  
		group by  s.FSUBCODE";	
		$lobj_get_true_sub_names = $aobj_context->mobj_db->getAll($get_true_sub_names);	
	 
		$e_data.="<table  width='94%' class='tr_ventor_row' cellspacing='0' cellpadding='0' border='0' >";
		$e_data.="<tr style='font-size:12px;' class='ui-state-default ui-jqgrid-hdiv'>";		
		$e_data.="<td  style='padding:2px; width:60px; border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Sub Code</td>";
		$e_data.="<td  style='padding:2px; width:65px; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Short Name</td>";
		$e_data.="<td  style='padding:2px; width:65px; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Subject Name</td>";
		$e_data.="</tr>";
		
		$k=0;
		$id=0;
	 
		if(empty($lobj_get_exsting_data))
		{
			$remaining_count=$total_sub-count($lobj_get_true_sub_names);
				
			foreach($lobj_get_true_sub_names as $key=>$value)
			{
		  
				$e_data.="<tr style='font-size:12px;' class='ui-widget-content jqgrow'>";
				$e_data.="<td class='tbl_row_new subcode' align='center' style='border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px;'><input  tabindex=-1  {$inp_class} type=text style='width:60px;border:none;' readonly id='se_sub_code_{$id}' value='{$value['FSUBCODE']}' onkeydown='return keyboardSubjectAppearingPopup(event,this.id);'></td>";
				$e_data.="<td class='tbl_row_new' align='center' style='border-right:1px solid #C5DBEC; padding:2px;'><input type=text style='border:none;width:60px;' {$inp_class}  tabindex=-1  readonly id='se_short_name_{$id}' value='{$value['FSUBSHORT']}'></td>";
				$e_data.="<td  class='tbl_row_new' style='border-right:1px solid #C5DBEC; padding:2px;'><input type=text style='border:none;width:290px;' {$inp_class} id='se_sub_name_{$id}'  tabindex=-1   readonly value='{$value['FSUBNAME']}'> </td>";
				$e_data.="</tr>";
				 $k++;
				 $id++;
			}

			$name=''; 

			for($j=0;$j<$remaining_count;$j++)
			{				 
				if($k%2==0)
				{
					$class='tbl_row';
					$inp_class='tbl_row_input';
				}
				else
				{
					$input_class='tbl_row1'; 
					$inp_class='tbl_row1_input';
				}  
				if($j==0)
					$name="name='focus'";
				else
					$name='';
				 
				 $e_data.="<tr style='font-size:12px;' class='ui-widget-content jqgrow' >";
				 $e_data.="<td class='tbl_row_new subcode' align='center' style='border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:1px;'><input type='text' onkeydown='return keyboardSubjectAppearingPopup(event,this.id);' value='{$lobj_last_slno_execution[$j][FSUBCODE]}' onfocus=\$g_focus_element='se_sub_code_{$id}' {$name}  onblur='getSubDetails(this.id,{$id});' align='center' style = 'width:60px;' maxlength='4' id='se_sub_code_{$id}'> </td>";
				 $e_data.="<td class='tbl_row_new' align='center'  style='border-right:1px solid #C5DBEC;  padding:2px;'><input type='text'  tabindex=-1  readonly style = 'width:60px;border:none;' id='se_short_name_{$id}' value='{$lobj_last_slno_execution[$j][FSUBSHORT]}'  ></td>";
				 $e_data.="<td class='tbl_row_new' style='border-right:1px solid #C5DBEC; padding:2px;'><input type='text' tabindex=-1  readonly  style = 'width:290px;border:none;' id='se_sub_name_{$id}' value='{$lobj_last_slno_execution[$j][FSUBNAME]}'  ></td>";
				 $e_data.="</tr>";
				 $k++;
				 $id++;
			}  
		}
		else
		{
			$flag=0;
			$remaining_count=$total_sub-count($lobj_get_exsting_data);
			for($h=0;$h<count($lobj_get_exsting_data);$h++)
			{
				$read_only=($lobj_get_exsting_data[$h]['FMANDATORY']=='T')?"readOnly":''; 
				$read_only = "readOnly";
				$border=($lobj_get_exsting_data[$h]['FMANDATORY']=='T')?" border:none;":''; 
				$on_blur =($lobj_get_exsting_data[$h]['FMANDATORY']=='F')?" onblur='getSubDetails( this.id,{$id});' onkeydown='return keyboardSubjectAppearingPopup(event,this.id);' ":'';
				$focus_id =($lobj_get_exsting_data[$h]['FMANDATORY']=='F')?" onfocus=\$g_focus_element='se_sub_code_{$id}' ":'';
				   
				if($k%2==0)
				{
				$class='tbl_row';
				$inp_class='tbl_row_input';
				}
				else
				{
				$input_class='tbl_row1'; 
				$inp_class='tbl_row1_input';
				}
				if(($lobj_get_exsting_data[$h]['FMANDATORY']=='F') && $flag==0)
				{
				$name="name='focus'";
				$flag=1;
				}else
				$name='';
			 $e_data.="<tr style='font-size:12px;' class='ui-widget-content jqgrow' >";
			 $e_data.="<td class='tbl_row_new subcode' align='center'style='border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px; padding:1px;'><input type='text' {$input_class} 
			 	onkeydown='return keyboardSubjectAppearingPopup(event,this.id);' 
			 	onblur='getSubDetails( this.id,{$id});'
			 	 {$name}  align='center' {$focus_id} value='{$lobj_get_exsting_data[$h]['FSUBCODE']}' style = 'width:60px;{$border}' id='se_sub_code_{$id}'>  </td>";
			 $e_data.="<td class='tbl_row_new' align='center' style='border-right:1px solid #C5DBEC;  padding:2px;'><input type='text'   {$read_only} style = 'width:60px;border:none;'  {$inp_class} value='{$lobj_get_exsting_data[$h]['FSUBSHORT']}' id='se_short_name_{$id}'></td>";
			 $e_data.="<td class='tbl_row_new' style='border-right:1px solid #C5DBEC; padding:2px;'><input type='text'   {$read_only} style = 'width:290px;border:none;' {$inp_class}  value='{$lobj_get_exsting_data[$h]['FSUBNAME']}' id='se_sub_name_{$id}'></td>";
			 $e_data.="</tr>";
			 $k++;
			 $id++;
			}
			$k=0;
			for($j=0;$j<$remaining_count;$j++)
			{				 
				if($k%2==0)
				{
				$class='tbl_row';
				$inp_class='tbl_row_input';
				}
				else
				{
				$input_class='tbl_row1'; 
				$inp_class='tbl_row1_input';
				}  
				if($j==0)
				$name="name='focus'";
				else
				$name='';
				 
				 $e_data.="<tr style='font-size:12px;' class='ui-widget-content jqgrow' >";
				 $e_data.="<td class='tbl_row_new subcode' align='center' style='border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:1px;'><input type='text' onkeydown='return keyboardSubjectAppearingPopup(event,this.id);' value='{$lobj_last_slno_execution[$j][FSUBCODE]}' onfocus=\$g_focus_element='se_sub_code_{$id}' {$name}  onblur='getSubDetails(this.id,{$id});' align='center' style = 'width:60px;' maxlength='4' id='se_sub_code_{$id}'> </td>";
				 $e_data.="<td class='tbl_row_new' align='center'  style='border-right:1px solid #C5DBEC;  padding:2px;'><input type='text'  tabindex=-1  readonly style = 'width:60px;border:none;' id='se_short_name_{$id}' value='{$lobj_last_slno_execution[$j][FSUBSHORT]}'  ></td>";
				 $e_data.="<td class='tbl_row_new' style='border-right:1px solid #C5DBEC; padding:2px;'><input type='text' tabindex=-1  readonly  style = 'width:290px;border:none;' id='se_sub_name_{$id}' value='{$lobj_last_slno_execution[$j][FSUBNAME]}'  ></td>";
				 $e_data.="</tr>";
				 $k++;
				 $id++;
			}
		}		
		 
		$e_data.="</table>";
		$arr['html']=$e_data;
		$arr['table_data']=$lobj_get_true_sub_names;
		$arr['remaining_count']=$remaining_count;
		$arr['total_count']=$id;

		$query = "select * from admfeedetl where fcollcode = '{$_SESSION['collcode']}' 
		and fappno = '{$app_no}'";
		$results = $aobj_context->mobj_db->GetAll($query);

		if($results)
		{	
			$get_details="SELECT ma.FHEADCODE,IFNULL(ta.FAMOUNT ,ma.FFEE) as FFEE,ma.FMODIFY, 
			ifnull(ta.FAMOUNT ,ma.FFEE) as fee_paid, FCOMBCODE,FCATCODE
			FROM admfeestr ma
			left join admfeedetl ta
		 	on ma.fdegree = ta.fdegree and ma.fexamno = ta.fexamno and ma.fheadcode = ta.fheadcode
		 	WHERE ma.FDEGREE='{$degree}'
			AND ma.FEXAMNO='A'
			AND ma.FCOMBCODE='ADM' and ta.fcollcode = '{$_SESSION['collcode']}' and ta.fappno = '{$app_no}'
			AND ma.FCATCODE='GM' order by ma.fheadcode";
			//var_dump($get_details);
			$lobj_rs = $aobj_context->mobj_db->GetAll($get_details);
		}
		else
		{
			$get_details="SELECT ma.FHEADCODE,ma.FFEE,ma.FMODIFY,ifnull(ma.FFEE,'') as fee_paid,
			FCOMBCODE,FCATCODE
			FROM admfeestr ma
		 	WHERE ma.FDEGREE='{$degree}' and FCATCODE = 'GM'
			AND ma.FEXAMNO='A'
			AND ma.FCOMBCODE='ADM' order by ma.fheadcode";
			$lobj_rs = $aobj_context->mobj_db->GetAll($get_details);
		}			

		$str_reval="";
		$str_reval.="<table width='60%' style='padding:3px 4px 3px 3px;' class='tr_ventor_row' id='reval_table_data' width='100%' border='0' cellspacing='0' cellpadding='0'>";
		$str_reval.="<th align='left' colspan='4' class='ui-jqgrid-titlebar ui-widget-header ui-corner-tl ui-corner-tr ui-helper' style='font-size:12px; padding-left:6px; height:24px;'>Fee Details</th>";
		$str_reval.="<tr class='ui-state-default ui-jqgrid-hdiv'>";
		$str_reval.="<td align='center' style=' font-size:12px; border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Sl.No</td>";
		$str_reval.="<td align='center' style=' font-size:12px; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Description</td>";
		/*$str_reval.="<td align='center' style=' font-size:12px; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Fee</td>";*/
		$str_reval.="<td align='center' style=' font-size:12px; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Fee Paid</td>";
 
		$str_reval.="</tr>";
		$sl_no=1;
		$total=0;
		$total_fee_paid=0;
		foreach($lobj_rs  as $ak=>$av)
		{
			$FHEADCODE=$av['FHEADCODE'];
			$FFEE=$av['FFEE'];
			$fee_paid=$av['fee_paid'];
			$total+=$FFEE;
			$total_fee_paid+=$fee_paid;
			$str_reval.="<tr class='ui-widget-content jqgrow'>";		
			$str_reval.="<td class='tbl_row_new' style='text-align:center; border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px; font-size:12px;  ' >{$sl_no}</td>";
			$str_reval.="<td class='tbl_row_new' style='border-left:0px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px; font-size:12px;' align='left' id='head_{$sl_no}'>{$FHEADCODE}</td>";
			/*$str_reval.="<td class='tbl_row_new' style='border-left:0px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px; font-size:12px;width:50px;'align='right' >{$FFEE}</td>";*/
			$str_reval.="<td class='tbl_row_new' style='border-left:0px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px; font-size:12px;' align='right'><input onblur=\"CalculateTotalFeePaid();\" onkeypress='return acceptNumbersOnlyForModule(event);'  type='text'  style='text-align:right;width:50px;'id='fee_paying_{$sl_no}' value='{$fee_paid}'/></td>";
			$str_reval.="</tr>";
			$sl_no++;
		}
		$str_reval.="<tr class='ui-widget-content jqgrow' style='font-weight:bold;'>";		
		$str_reval.="<td colspan=2 class='tbl_row_new' style='text-align:center; border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px; font-size:12px;'  align='right'>Total </td>";
		 
		/*$str_reval.="<td class='tbl_row_new' style='border-left:0px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px; font-size:12px;' align='right' id='total_comb_fee'>{$total}</td>";*/
		$str_reval.="<td class='tbl_row_new' style='border-left:0px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px; font-size:12px;' align='right' id='total_fee_paid'>{$total_fee_paid}</td>";
	
		$str_reval.="</tr>";
		$str_reval.="</table>";
		$arr['fee_html']=	$str_reval;
	}	

	/*$query = "select fdegree, ifnull(fname,'') as fname,
	ifnull(fmobileno,'') as fmobileno,ifnull(femail,'') as femail where fdegree = '' 
	and fcollcode = '' and  ";*/

	echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); 
	return;

	if(!empty($lobj_rs))
	{
		echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); 
		return;
	}
	else
	{
		echo $aobj_context->mobj_output->ToJSONEnvelope($lobj_get_student_details,-2,"Failure"); 
		return;
	}
} 

function GetCombinationdeg($aobj_context)
{
	$degree = $aobj_context->mobj_data["degree"];

	$query3 = "SELECT FCATEGORY AS int_code,FDESCPN AS val FROM category 
	where ifnull(FDELETED,'') <> 'T' order by FCATEGORY asc ";
	$rst3 = $aobj_context->mobj_db->GetAll($query3);
	$arr['category'] = $rst3;

	$query3 = "SELECT distinct fcombcode AS int_code,fcombdesc AS val FROM mascomb 
	WHERE fdegree = '{$degree}' AND IFNULL(FDELETED,'') <> 'T' ORDER BY fcombcode ";
	$rst3   = $aobj_context->mobj_db->GetAll($query3);
	$arr['mascomb'] = $rst3;

	$query4 = "select fboardcode as int_code, fboardname as val from masboard order by forder";
	$rst4   = $aobj_context->mobj_db->GetAll($query4);
	$arr['boards'] = $rst4;

	$query = "SELECT DISTINCT m.internal_code AS int_code, 
	FCERTDESC AS doc_type ,
	IFNULL(FFILENAME,REPLACE(REPLACE(FCERTDESC,' ','_'),'+','_')) AS FFILENAME
	FROM masdoc m
	where m.fdegree = '{$degree}'
	ORDER BY forder";
	$results = $aobj_context->mobj_db->GetAll($query);
	$arr['masdoc'] = $results;

	echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); 
	return;
}

function DisplayUserSelectedfile($aobj_context)
{
	$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); 
	$date = date("dmYhis");
	$file_name   = $aobj_context->mobj_data["file_name"];
	$folder_path = $aobj_context->main_src."/upload/";
	
	
	
	$path_arr = pathinfo($_FILES[$file_name]['name']);
	$file_ext=$path_arr['extension'];
 
	
	$temp_path=$aobj_context->main_src."/upload";
	if(!file_exists($temp_path))
	{
		mkdir($temp_path);
	}

	$file_path="/{$date}_".$path_arr['basename'];
	
	$temp_path.=$file_path;

	if(isset($_FILES[$file_name]['name']) && $_FILES[$file_name]['name'] != '')         
	{ 
		$size=($_FILES[$file_name]['size']/1024);
		if($size>1024)
		{
			$data="Please Upload the Photo of size less than 1 MB";
			echo $aobj_context->mobj_output->ToJSONEnvelope($data,-2,"success"); 
			return;
		}

		if(move_uploaded_file($_FILES[$file_name]['tmp_name'],$temp_path))
		{
			$data['path'] ="upload/{$file_path}";
			$data['file_name'] =$file_name;
			echo $aobj_context->mobj_output->ToJSONEnvelope($data,0,"success"); 
			return;
		}
	}
	echo $aobj_context->mobj_output->ToJSONEnvelope($data,-1,"failure"); 
	return;	
}

function replaceChars($name)
{
	$spl_char = array("*","/","~","!","@","#","$","%","^","&",":",";","?","/","\\","_","-","'"," ","");
	$link_name = strtolower(str_replace($spl_char,"_",$name));
	return str_ireplace("__","_",$link_name);
}


function savestudententryapplication($aobj_context)
{

	$lstr_param    = stripslashes($aobj_context->mobj_data["personal_info"]);
	$type          = stripslashes($aobj_context->mobj_data["type"]);
	$per_arr_data  = json_decode($lstr_param, true);	
	$fappno        = stripslashes($aobj_context->mobj_data["fappno"]);
	$student_photo = stripslashes($aobj_context->mobj_data["student_photo"]);
	$student_sign  = stripslashes($aobj_context->mobj_data["student_sign"]);
	$gender  = stripslashes($aobj_context->mobj_data["gender"]);
	$rgMultiMarks = stripslashes($aobj_context->mobj_data["rgMultiMarks"]);
	////recieve decode json string of subject info

	$strSubject = stripslashes($aobj_context->mobj_data["pRgSubjects"]);
	$sub_arr_data = json_decode($strSubject, true);	

	$rgPerArray = array();
	for($i=0; $i<count($per_arr_data); $i++)
	{
		$rgPerArray[$per_arr_data[$i]['id']] = $per_arr_data[$i]['value'];
	}

	$sub_data = array();
	for($i=0; $i<count($sub_arr_data); $i++)
	{
		$sub_data[$sub_arr_data[$i]['id']] = $sub_arr_data[$i]['value'];
	}

	$total = $rgPerArray['fee_paying_2']+$rgPerArray['fee_paying_1'];

	$get_last_no="select right(concat('0000',ifnull(max(FSLNO),0)+01),4) as app_no 
		from studadm
		WHERE FDEGREE='{$rgPerArray['student_entry_degree_code']}' 
		and FCOLLCODE = '{$_SESSION['collcode']}'";
		$obj =  $aobj_context->mobj_db->GetRow($get_last_no); 
		$sl_no = "0000".$obj['app_no']; 
		$sl_no = substr($sl_no, -4);

		$query = "select FADMPREFIX from control";
		$results = $aobj_context->mobj_db->GetRow($query);
		$FADMPREFIX = $results['FADMPREFIX'];

	
		/*$query = "select internal_code+1 as FAUTOINCREMENT from studadm 
		order by internal_code desc limit 1";
		$results = $aobj_context->mobj_db->GetRow($query);
		$FAUTOINCREMENT = $results['FAUTOINCREMENT'];

		$appno = $FADMPREFIX.$FAUTOINCREMENT;
		$fappno = $appno;
		$rgPerArray['student_entry_admno'] = $fappno;*/
	

		$college = $_SESSION['collcode'];
		$total = $rgPerArray['fee_paying_1']+$rgPerArray['fee_paying_2']+$rgPerArray['fee_paying_3']+$rgPerArray['fee_paying_4']+$rgPerArray['fee_paying_5']+$rgPerArray['fee_paying_6']+$rgPerArray['fee_paying_7'];

		$insert_qry="insert into studadm 
		(FSLNO,FDEGREE,FCOLLCODE,FNAME,FGENDER,FDOB,
		FEXAMNO,FFATNAME,FMOTNAME,FEMAIL,FCASTE,
		FCONTACT_NO,FNATIONAL,FCURRADD1,FCURRADD2,FCURRADD3,FCURRADD4,
		FPERMADD1,FPERMADD2,FPERMADD3,FPERMADD4,
		FRELIGION,FMOBILE_NO,
		FCATBIRTH,FADMDATE,FINCOME,FAADHARNO,
		FUNIVNAME,FQUALEXREGNO, 
		FAPPNO,FAREA,FQMONTH,FQYEAR,FQSECMARKS,FQMAXMARKS,FQPERCENTAGE,FBLOOD_GROUP,
		FTYPEQUALEXAM,fcombcode,FCREATEDATE, 
		FCREATEUSER,FFINSUB,FACKDATE,FACKUSER,FAPPSTATUS,FCONSTYPE,FADMFINE,FTOTFEE,FUNIVFEE,FSTUTYPE,FMEDIUM,FQUOTA,
		fincomecert,fcastecert,flateral_entry)
		values   
		('{$sl_no}','{$rgPerArray['student_entry_degree_code']}',
		'{$college}','{$rgPerArray['student_entry_name']}',
		'{$gender}',
		date_format(STR_TO_DATE('{$rgPerArray['student_entry_dob']}','%d/%m/%Y'),'%Y-%m-%d'),
		'A','{$rgPerArray['student_entry_fname']}',
		'{$rgPerArray['student_entry_mname']}','{$rgPerArray['student_entry_email']}',
		'{$rgPerArray['degree_category']}','{$rgPerArray['student_entry_mobile']}',
		'{$rgPerArray['student_entry_nationality']}',
		'{$rgPerArray['student_entry_comm_addr1']}',
		'{$rgPerArray['student_entry_comm_addr2']}',
		'{$rgPerArray['student_entry_comm_addr3']}',
		'{$rgPerArray['student_entry_comm_addr4']}',
		'{$rgPerArray['student_entry_per_add1']}','{$rgPerArray['student_entry_per_add2']}',
		'{$rgPerArray['student_entry_per_add3']}','{$rgPerArray['student_entry_per_add4']}',
		'{$rgPerArray['student_entry_religion']}','{$rgPerArray['student_entry_phone']}',
		'{$rgPerArray['student_entry_caste']}',
		date_format(now(),'%Y-%m-%d'),'{$rgPerArray['student_entry_fincome']}',
		'{$rgPerArray['seAadharNumber']}',
		'{$rgPerArray['seUniversityName']}','{$rgPerArray['seExamRegNo']}',
		'{$rgPerArray['student_entry_mobile']}',
		'{$rgPerArray['farea']}',
		'{$rgPerArray['fmonth']}','{$rgPerArray['fyear']}',
		'{$rgPerArray['secmarks']}','{$rgPerArray['maxmarks']}',
		'{$rgPerArray['percentage']}','{$rgPerArray['student_entry_blood_grp']}',
		'{$rgPerArray['seTypeOfQualifyingExam']}',
		'{$rgPerArray['combination']}', now(), 'College','T',now(),'{$_SESSION['user_type']}',
		'verified','{$rgPerArray['constype']}','{$rgPerArray['fee_paying_2']}','{$total}',
		'{$total}','{$rgPerArray['fstudtype']}','{$rgPerArray['fmedium']}','{$rgPerArray['fadmquota']}'
		,'{$rgPerArray['fincomecert']}','{$rgPerArray['fcastecert']}'
		,'{$rgPerArray['LT']}')";

		$studresults = $aobj_context->mobj_db->Execute($insert_qry);

	if($studresults)
	{
		
			$query = "select internal_code, fdegree, fcollcode, fslno from studadm 
			where fcontact_no = '{$rgPerArray['student_entry_mobile']}' 
			and fappno = '{$rgPerArray['student_entry_mobile']}'"; 
			$results2 = $aobj_context->mobj_db->GetRow($query);
			if(count($results2) > 0)
			{
				$internal_code = $results2['internal_code'];
				$degree = $results2['fdegree'];
				$college = $results2['fcollcode'];
				$sl_no = $results2['fslno'];
				$fappno = '541'.$internal_code;

				$query = "update studadm set fappno = '{$fappno}' 
				where fcontact_no = '{$rgPerArray['student_entry_mobile']}' 
				and fappno = '{$rgPerArray['student_entry_mobile']}'";

				$results3 = $aobj_context->mobj_db->Execute($query);
			}
			else
			{
				$arr['message'] = '2. Error in saving admission details. Send query through I NEED HELP.';
				echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"failure"); 
				return;
			}


			if(count($sub_arr_data) > 0)
			{
				for($k=0;$k<count($sub_data);$k++)
				{
					$subcode = "se_sub_code_".$k;
					if($sub_data[$subcode] != '')
					{
						
						$insSubs .= "('{$degree}','{$sub_data[$subcode][0]}','{$college}','{$sl_no}','{$sub_data[$subcode]}','F','{$fappno}'),";
					}
				}
				//var_dump($insSubs);
				$insSubs = rtrim($insSubs,',');

				$query = "insert into options(FDEGREE, FEXAMNO, FCOLLCODE,
				FSLNO, FSUBCODE, FDELETED, FAPPNO)
				values
				{$insSubs}";
				//var_dump($query);
				$optresults = $aobj_context->mobj_db->Execute($query);
			}


			$cert_path = $aobj_context->main_src."/certificates/".$fappno;
			if(!file_exists($cert_path))
			{
				mkdir($cert_path);
			}
			$insert = "INSERT INTO studoc
			( 
			app_no, 
			login_cnt, 
			file_path, 
			created_date,fdegree,fcollcode,fdoctype
			)
			select '{$sl_no}', '{$fappno}', null, now(), '{$degree}', 
			'{$college}', ffilename from masdoc where fdegree = 'BA1'";	
			$lobj_insert= $aobj_context->mobj_db->Execute($insert);

			$doc_names = ['ADHAAR', 'CASTE', 'INCOME', 'SSLCMC', 'TCCERT', 'PUMC', 'GCCERT'];

			for($i=0;$i<count($doc_names);$i++)
			{
				$GCCERT = $rgPerArray['h_'.$doc_names[$i]];
				if($GCCERT == '')
					continue;

				$GCCERT_PATH = $aobj_context->main_src.$GCCERT;
				$filename = explode(".", $GCCERT_PATH);
				$ext = strtolower($filename[1]);

				$GCCERT_FILENAME = $doc_names[$i];
				
				$GCCERT_FILENAME = $GCCERT_FILENAME.".".$ext;

				$GCCERT_FILENAME_FILENAME = $cert_path."/".$GCCERT_FILENAME;
				$GCCERT = "certificates/{$fappno}/".$GCCERT_FILENAME;
				if(copy($GCCERT_PATH,$GCCERT_FILENAME_FILENAME))
				{
					$update = "";
					$update = "update studoc set file_path = '{$GCCERT}' 
					where login_cnt = '{$fappno}' 
					and fdoctype = '{$doc_names[$i]}'";
					$lobj_insert= $aobj_context->mobj_db->Execute($update);
					unlink($GCCERT_PATH);
				}
			}

			$query = "delete from admfeedetl where fappno = '{$fappno}'";
			$deladmresults = $aobj_context->mobj_db->Execute($query);
			

			$query = "insert  into admfeedetl (`FYEAR`,`FDEGREE`,`FEXAMNO`,`FCOLLCODE`,`FSLNO`,`FHEADCODE`,`FAMOUNT`,FAPPNO) values 
				('2019','{$degree}','A','{$college}',
				'{$sl_no}','01 REGISTRATION FEE','{$rgPerArray['fee_paying_1']}','{$fappno}'),
				('2019','{$degree}','A','{$college}',
				'{$sl_no}','02 ADMISSION FEE','{$rgPerArray['fee_paying_2']}','{$fappno}'),
				('2019','{$degree}','A','{$college}',
				'{$sl_no}','03 SPORTS FEE','{$rgPerArray['fee_paying_3']}','{$fappno}'),
				('2019','{$degree}','A','{$college}',
				'{$sl_no}','04 PROSESSING FEE','{$rgPerArray['fee_paying_4']}','{$fappno}'),
				('2019','{$degree}','A','{$college}',
				'{$sl_no}','05 CULTURAL ACTIVITIES FEE','{$rgPerArray['fee_paying_5']}','{$fappno}'),
				('2019','{$degree}','A','{$college}',
				'{$sl_no}','06 ELIGIBILITY FEE','{$rgPerArray['fee_paying_6']}','{$fappno}'),
				('2019','{$degree}','A','{$college}',
				'{$sl_no}','07 FINE','{$rgPerArray['fee_paying_7']}','{$fappno}')";

			$results = $aobj_context->mobj_db->Execute($query);	

			// 	$query = "insert  into admfeedetl (`FYEAR`,`FDEGREE`,`FEXAMNO`,`FCOLLCODE`,`FSLNO`,`FHEADCODE`,`FAMOUNT`,FAPPNO) values 
			// ('2018','{$degree}','A','{$college}',
			// '{$sl_no}','01 University Total Fee','{$rgPerArray['fee_paying_1']}','{$fappno}'),
			// ('2018','{$degree}','A','{$college}',
			// '{$sl_no}','02 Fine','{$rgPerArray['fee_paying_2']}','{$fappno}')";
		//var_dump($query);
				


		
		$photo_filename = $student_photo;
		$sign_filename = $student_sign;

		$college_path=$aobj_context->main_src."/student_photos/{$college}";
		$degree_path=$aobj_context->main_src."/student_photos/{$college}/".$degree;;
		$folder_path=$aobj_context->main_src."/student_photos/{$college}/".$degree;;
		$sign_folder_path = $aobj_context->main_src."/student_photos/{$college}/".$degree."/sign";
		
		
		if($photo_filename != '')
		{
			$image_path = $aobj_context->main_src.$photo_filename;

			$filename = explode(".", $photo_filename);
			$ext = strtolower($filename[1]);
			$photo_filename = $college."_".$degree."_".$fappno;
			$photo_filename = $photo_filename.".".$ext;

			$full_file_path = $folder_path.'/'.$photo_filename;

			if(!file_exists($college_path))
			{
				mkdir($college_path);
			}

			if(!file_exists($degree_path))
			{
				mkdir($degree_path);
			}
			if(!file_exists($sign_folder_path))
			{
				mkdir($sign_folder_path);
			}

			$photo = "student_photos/{$college}/".$degree.'/'.$photo_filename;
			//var_dump($image_path);
			//var_dump($full_file_path);	
			if(copy($image_path,$full_file_path))
			{
				$update="update studadm set FPHOTOPATH='{$photo}' 
						where FAPPNO=  '{$fappno}'";

				$up_obj=$aobj_context->mobj_db->Execute($update); 
				unlink($image_path);
			}
		}

		//update signature path
		
		//$sign_filename = $rgPerArray['sign_path'];

		if($sign_filename != '')
		{
			$sign_path = $aobj_context->main_src.$sign_filename;

			$filename = explode(".", $sign_filename);
			$ext = strtolower($filename[1]);
			$sign_filename = $college."_".$degree."_".$fappno."_sign";
			$sign_filename = $sign_filename.".".$ext;

			$full_file_path_sign = $folder_path."/sign/".$sign_filename;

			$sign = "student_photos/{$college}/".$degree."/sign/".$sign_filename;
			//var_dump($sign_path);
			//var_dump($full_file_path_sign);	

			if(copy($sign_path,$full_file_path_sign))
			{
				$update="update studadm set FSIGNPATH='{$sign}' 
						where FAPPNO=  '{$fappno}' ";
				$up_obj=$aobj_context->mobj_db->Execute($update); 
				unlink($sign_path);
			}
		}

		$mobj_jsondata = json_decode($rgMultiMarks,true);
		//var_dump($this->mobj_jsondata);
		
		$sub_marks = array();
		for($i=0; $i<count($mobj_jsondata); $i++)
		{
			
			for($j=0;$j<count($mobj_jsondata[$i]);$j++)
			{
				$sub_marks[$i][$mobj_jsondata[$i][$j]['name']] = $mobj_jsondata[$i][$j]['value']; 	

			}	
		}
		if(count($mobj_jsondata) > 0)
		{	
			$query = "delete from qualsubdet where fappno = '{$fappno}'";
			//var_dump($query);
			$resdelt = $aobj_context->mobj_db->Execute($query);
		}	
		//var_dump(count($sub_marks));
		$sql = array();
		$j=0;
		for($i=1; $i<=count($sub_marks);$i++)
		{
			$sql[] = "('{$fappno}'
			,'{$college}'
			,'{$degree}'
			,'S0{$i}'
			,'{$sub_marks[$j]["subsem1_$i"]}',
			'{$sub_marks[$j]["subsem1mo_$i"]}'
			,'{$sub_marks[$j]["subsem1mm_$i"]}'
			,'{$sub_marks[$j]["subsem2mo_$i"]}'
			,'{$sub_marks[$j]["subsem2mm_$i"]}'
			,'{$sub_marks[$j]["subsem3mo_$i"]}'
			,'{$sub_marks[$j]["subsem3mm_$i"]}'
			,'{$sub_marks[$j]["subsem4mo_$i"]}'
			,'{$sub_marks[$j]["subsem4mm_$i"]}'
			,'{$sub_marks[$j]["subsem5mo_$i"]}'
			,'{$sub_marks[$j]["subsem5mm_$i"]}'
			,'{$sub_marks[$j]["subsem6mo_$i"]}'
			,'{$sub_marks[$j]["subsem6mm_$i"]}'
			,'{$sub_marks[$j]["subtotalmo_$i"]}'
			,'{$sub_marks[$j]["subtotalmm_$i"]}'
			,'{$sub_marks[$j]["subpercentagemm_$i"]}')";
			
			$j++;
		}

		$query = 'INSERT INTO qualsubdet(fappno,
		fcollcode, fdegree, fsubcode,
		fsubname, fsecmarksa , fmaxmarksa, 
		fsecmarksb, fmaxmarksb,
		fsecmarksc, fmaxmarksc,
		fsecmarksd, fmaxmarksd,
		fsecmarkse, fmaxmarkse,
		fsecmarksf, fmaxmarksf,
		ftotsecmarks, ftotmaxmarks,
		fsubpercent
		) VALUES '.implode(',', $sql);
		//var_dump($query);
		$resultqualdets = $aobj_context->mobj_db->Execute($query);
	}

	if($studresults && $optresults)
	{
		$data = $fappno;
		echo $aobj_context->mobj_output->ToJSONEnvelope($data,0,"success"); 
		return;
	}
	else
	{
		$data = '';
		echo $aobj_context->mobj_output->ToJSONEnvelope($data,-1,"failure"); 
		return;
	}
}

function DiaplayStudentSignature($aobj_context)
{
	$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); 
	session_start();
	$date = date("dmYhis");

	$file_name=replaceChars(basename($_FILES['student_entry_signupload']['name']));
	$path_arr=pathinfo($_FILES['student_entry_signupload']['name']);
	$file_ext=$path_arr['extension'];

	$temp_path = $aobj_context->main_src."/upload/";
	if(!file_exists($temp_path))
	{
		mkdir($temp_path);
	}

	$file_path="/{$date}_{$file_name}";
	$temp_path.=$file_path;

	if(isset($_FILES['student_entry_signupload']['name']) && $_FILES['student_entry_signupload']['name'] != '')         
	{ 
		$size=($_FILES['student_entry_signupload']['size']/1024);
		if($size>1024)
		{
			$data="Please Upload the Photo of size less than 1 MB";
			echo $aobj_context->mobj_output->ToJSONEnvelope($data,-2,"success"); 
			return;
		}
		if(move_uploaded_file($_FILES['student_entry_signupload']['tmp_name'],$temp_path))
		 {
			$data="upload/{$file_path}";
			echo $aobj_context->mobj_output->ToJSONEnvelope($data,0,"success"); 
			return;
		 }
	}
	echo $aobj_context->mobj_output->ToJSONEnvelope($data,-1,"failure"); 
	return;	
}


function DiaplayStudentPhoto($aobj_context)
{
	$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); 
	session_start();
	$date = date("dmYhis");

	$file_name=replaceChars(basename($_FILES['student_entry_upload']['name']));
	$path_arr=pathinfo($_FILES['student_entry_upload']['name']);
	$file_ext=$path_arr['extension'];

	$temp_path = $aobj_context->main_src."/upload/";
	if(!file_exists($temp_path))
	{
		mkdir($temp_path);
	}

	$file_path="/{$date}_{$file_name}";
	$temp_path.=$file_path;

	if(isset($_FILES['student_entry_upload']['name']) && $_FILES['student_entry_upload']['name'] != '')         
	{ 
		$size=($_FILES['student_entry_upload']['size']/1024);
		if($size>1024)
		{
			$data="Please Upload the Photo of size less than 1 MB";
			echo $aobj_context->mobj_output->ToJSONEnvelope($data,-2,"success"); 
			return;
		}
		if(move_uploaded_file($_FILES['student_entry_upload']['tmp_name'],$temp_path))
		 {
			$data="upload/{$file_path}";
			echo $aobj_context->mobj_output->ToJSONEnvelope($data,0,"success"); 
			return;
		 }
	}
	echo $aobj_context->mobj_output->ToJSONEnvelope($data,-1,"failure"); 
	return;	
}


function getcombinationsubjectdet($aobj_context)
{

	$degree = $aobj_context->mobj_data["degree_code"]; 
	$combination = $aobj_context->mobj_data["combination"];
	$exam = $aobj_context->mobj_data["exam"]; 
	$app_no = $aobj_context->mobj_data["app_no"]; 


	$get_sub_total  = "select FTOTSUB from degree where FDEGREE= '{$degree}' and FEXAMNO='A'";
	$lobj_sub_total = $aobj_context->mobj_db->getRow($get_sub_total);
		
	$total_sub      = $lobj_sub_total['FTOTSUB'];
	//$exam  = 'A';

	$get_exsting_data = "select a.*,b.FSUBNAME,b.FSUBSHORT,FMANDATORY from 
	(select FDEGREE,FEXAMNO,FCOLLCODE,FSLNO,FSUBCODE from options
	where fappno = '{$app_no}' and FCOLLCODE='{$_SESSION['collcode']}' 
	and FEXAMNO='{$exam}' and FDEGREE='{$degree}') a
	left join 
	(select s.FDEGREE,
	FSUBCODE,FSUBNAME,FSUBSHORT ,FMANDATORY from degree d inner join subject s on 
	s.FDEGREE=d.FDEGREE  and  d.FEXAMNO=s.FEXAMNO
	where d.FDEGREE='{$degree}' and s.FEXAMNO='{$exam}') b 
	on a.FSUBCODE=b.FSUBCODE
	and a.FDEGREE=b.FDEGREE
	group by FSUBCODE limit {$total_sub}";
	 
	$lobj_get_exsting_data = $aobj_context->mobj_db->getAll($get_exsting_data);
	//var_dump($get_exsting_data);

	$get_true_sub_names = "select FSUBCODE,FSUBNAME,FSUBSHORT ,FMANDATORY from degree d inner join subject s on 
	s.FDEGREE=d.FDEGREE  and  d.FEXAMNO=s.FEXAMNO
	where d.FDEGREE='{$degree}' and s.FEXAMNO='{$exam}' and FMANDATORY='T' group by  s.FSUBCODE
	union
	select s.FSUBCODE,s.FSUBNAME,s.FSUBSHORT ,'T' as FMANDATORY from degree d inner join subject s on 
	s.FDEGREE=d.FDEGREE  and  d.FEXAMNO=s.FEXAMNO
	left join mascomb m on m.FDEGREE=d.FDEGREE and m.fcombcode = '{$combination}'
	where d.FDEGREE='{$degree}'  and m.FSUBCODE = s.FSUBCODE  
	group by  s.FSUBCODE";
	//var_dump($get_true_sub_names);	
	//var_dump($get_exsting_data);	
	$lobj_get_true_sub_names = $aobj_context->mobj_db->getAll($get_true_sub_names);	
	 
	$e_data.="<table  width='94%' class='tr_ventor_row' cellspacing='0' cellpadding='0' border='0' >";
	$e_data.="<tr style='font-size:12px;' class='ui-state-default ui-jqgrid-hdiv'>";		
	$e_data.="<td  style='padding:2px; width:60px; border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Sub Code</td>";
	$e_data.="<td  style='padding:2px; width:65px; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Short Name</td>";
	$e_data.="<td  style='padding:2px; width:65px; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Subject Name</td>";
	$e_data.="</tr>";
	
	$k=0;
	$id=0;
	 
	if(empty($lobj_get_exsting_data))
	{
		$remaining_count=$total_sub-count($lobj_get_true_sub_names);
			
		foreach($lobj_get_true_sub_names as $key=>$value)
		{
		  
			$e_data.="<tr style='font-size:12px;' class='ui-widget-content jqgrow'>";
			$e_data.="<td class='tbl_row_new subcode' align='center' style='border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px;'><input  tabindex=-1  {$inp_class} type=text style='width:60px;border:none;' readonly id='se_sub_code_{$id}' value='{$value['FSUBCODE']}' onkeydown='return keyboardSubjectAppearingPopup(event,this.id);'></td>";
			$e_data.="<td class='tbl_row_new' align='center' style='border-right:1px solid #C5DBEC; padding:2px;'><input type=text style='border:none;width:60px;' {$inp_class}  tabindex=-1  readonly id='se_short_name_{$id}' value='{$value['FSUBSHORT']}'></td>";
			$e_data.="<td  class='tbl_row_new' style='border-right:1px solid #C5DBEC; padding:2px;'><input type=text style='border:none;width:290px;' {$inp_class} id='se_sub_name_{$id}'  tabindex=-1   readonly value='{$value['FSUBNAME']}'> </td>";
			$e_data.="</tr>";
			 $k++;
			 $id++;
		}

		$name=''; 
		
		
		for($j=0;$j<$remaining_count;$j++)
		{				 
			if($k%2==0)
			{
			$class='tbl_row';
			$inp_class='tbl_row_input';
			}
			else
			{
			$input_class='tbl_row1'; 
			$inp_class='tbl_row1_input';
			}  
			if($j==0)
			$name="name='focus'";
			else
			$name='';
			 
			 $e_data.="<tr style='font-size:12px;' class='ui-widget-content jqgrow' >";
			 $e_data.="<td class='tbl_row_new subcode' align='center' style='border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:1px;'><input type='text' onkeydown='return keyboardSubjectAppearingPopup(event,this.id);' value='{$lobj_last_slno_execution[$j][FSUBCODE]}' onfocus=\$g_focus_element='se_sub_code_{$id}' {$name}  onblur='getSubDetails(this.id,{$id});' align='center' style = 'width:60px;' maxlength='4' id='se_sub_code_{$id}'> </td>";
			 $e_data.="<td class='tbl_row_new' align='center'  style='border-right:1px solid #C5DBEC;  padding:2px;'><input type='text'  tabindex=-1  readonly style = 'width:60px;border:none;' id='se_short_name_{$id}' value='{$lobj_last_slno_execution[$j][FSUBSHORT]}'  ></td>";
			 $e_data.="<td class='tbl_row_new' style='border-right:1px solid #C5DBEC; padding:2px;'><input type='text' tabindex=-1  readonly  style = 'width:290px;border:none;' id='se_sub_name_{$id}' value='{$lobj_last_slno_execution[$j][FSUBNAME]}'  ></td>";
			 $e_data.="</tr>";
			 $k++;
			 $id++;
		}  
	}
	else
	{
	$flag=0;
	$remaining_count=$total_sub-count($lobj_get_exsting_data);
	for($h=0;$h<count($lobj_get_exsting_data);$h++)
	{
		$read_only=($lobj_get_exsting_data[$h]['FMANDATORY']=='T')?"readOnly":''; 
		$border=($lobj_get_exsting_data[$h]['FMANDATORY']=='T')?" border:none;":''; 
		$on_blur =($lobj_get_exsting_data[$h]['FMANDATORY']=='F')?" onblur='getSubDetails( this.id,{$id});' onkeydown='return keyboardSubjectAppearingPopup(event,this.id);' ":'';
		$focus_id =($lobj_get_exsting_data[$h]['FMANDATORY']=='F')?" onfocus=\$g_focus_element='se_sub_code_{$id}' ":'';
		   
		if($k%2==0)
		{
			$class='tbl_row';
			$inp_class='tbl_row_input';
		}
		else
		{
			$input_class='tbl_row1'; 
			$inp_class='tbl_row1_input';
		}
		if(($lobj_get_exsting_data[$h]['FMANDATORY']=='F') && $flag==0)
		{
			$name="name='focus'";
			$flag=1;
			
		}else
			$name='';

	 $e_data.="<tr style='font-size:12px;' class='ui-widget-content jqgrow' >";
	 $e_data.="<td class='tbl_row_new subcode' align='center'style='border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px; padding:1px;'><input type='text' {$input_class} {$on_blur } {$name} {$read_only} align='center' {$focus_id} value='{$lobj_get_exsting_data[$h]['FSUBCODE']}' style = 'width:60px;{$border}' id='se_sub_code_{$id}'>  </td>";
	 $e_data.="<td class='tbl_row_new' align='center' style='border-right:1px solid #C5DBEC;  padding:2px;'><input type='text'   {$read_only} style = 'width:60px;border:none;'  {$inp_class} value='{$lobj_get_exsting_data[$h]['FSUBSHORT']}' id='se_short_name_{$id}'></td>";
	 $e_data.="<td class='tbl_row_new' style='border-right:1px solid #C5DBEC; padding:2px;'><input type='text'   {$read_only} style = 'width:290px;border:none;' {$inp_class}  value='{$lobj_get_exsting_data[$h]['FSUBNAME']}' id='se_sub_name_{$id}'></td>";
	 $e_data.="</tr>";
	 $k++;
	 $id++;
	}
		$k=0;
		for($j=0;$j<$remaining_count;$j++)
		{				 
			if($k%2==0)
			{
			$class='tbl_row';
			$inp_class='tbl_row_input';
			}
			else
			{
			$input_class='tbl_row1'; 
			$inp_class='tbl_row1_input';
			}  
			if($j==0)
			$name="name='focus'";
			else
			$name='';
			 
			 $e_data.="<tr style='font-size:12px;' class='ui-widget-content jqgrow' >";
			 $e_data.="<td class='tbl_row_new subcode' align='center' style='border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:1px;'><input type='text' onkeydown='return keyboardSubjectAppearingPopup(event,this.id);' value='{$lobj_last_slno_execution[$j][FSUBCODE]}' onfocus=\$g_focus_element='se_sub_code_{$id}' {$name}  onblur='getSubDetails(this.id,{$id});' align='center' style = 'width:60px;' maxlength='4' id='se_sub_code_{$id}'> </td>";
			 $e_data.="<td class='tbl_row_new' align='center'  style='border-right:1px solid #C5DBEC;  padding:2px;'><input type='text'  tabindex=-1  readonly style = 'width:60px;border:none;' id='se_short_name_{$id}' value='{$lobj_last_slno_execution[$j][FSUBSHORT]}'  ></td>";
			 $e_data.="<td class='tbl_row_new' style='border-right:1px solid #C5DBEC; padding:2px;'><input type='text' tabindex=-1  readonly  style = 'width:290px;border:none;' id='se_sub_name_{$id}' value='{$lobj_last_slno_execution[$j][FSUBNAME]}'  ></td>";
			 $e_data.="</tr>";
			 $k++;
			 $id++;
		}
	}		
	 
	$e_data.="</table>";
	$arr['html']=$e_data;
	$arr['table_data']=$lobj_get_true_sub_names;
	$arr['remaining_count']=$remaining_count;
	$arr['total_count']=$id;

	if(!empty($lobj_get_true_sub_names))
	{
		echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); 
		return;
	}
	else
	{
		echo $aobj_context->mobj_output->ToJSONEnvelope($lobj_get_student_details,-2,"Failure"); 
		return;
	}

}

?>