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.118.151.112


Current Path : /var/www/html/rcub/Report_details/
Upload File :
Current File : /var/www/html/rcub/Report_details/report_qpcount_univ_old_882024.php

<?php
$main_src=substr($_SERVER['SCRIPT_FILENAME'],0,strlen($_SERVER['SCRIPT_FILENAME'])-7);
$pdf_writer_class =$main_src."/tarka_pdf/fpdf.php";
require_once($pdf_writer_class);
	
class report_ra_qp_wise_student_count  extends FPDF
{
		 
	function DefaultConstructor($aobj_context)
	{
		session_start();
		$this->aobj_context=$aobj_context;
		$this->pdf=  new FPDF();
		$this->pdf=$this;
		$this->qp_code_from=trim($this->aobj_context->mobj_data["qp_code_from"]);
		$this->qp_code_to=trim($this->aobj_context->mobj_data["qp_code_to"]);
		$this->centerwise = trim($this->aobj_context->mobj_data["centerwise"]);
		//$centerwise =  $aobj_context->mobj_data["centerwise"];  
		
		$this->ip=$_SERVER["REMOTE_ADDR"];
		$get_date="select date_add(date_add(now(),INTERVAL 13 hour),interval 30 minute) as now_date";
		$obj=$this->aobj_context->mobj_db->GetRow($get_date);
		$this->current_date=$obj[now_date];	
		$this->collcode=$_SESSION['collcode'];	
	}
	 
	function Header()
	{
		session_start();
		$FUNIVCODE = $_SESSION['FUNIVCODE'];
		$img_path=$this->aobj_context->main_src.$this->photo_path;
		if(!empty($this->photo_path) && file_exists($img_path)) 
		{			
			$this->pdf->Image($img_path,166,50,50);
		}	
		if(!empty($this->pdf_logo_path))
		{
			$img_logo_path=$this->aobj_context->main_src.$this->pdf_logo_path;
			$this->pdf->Image($img_logo_path,10,10,20);
		}
		
		$this->pdf->SetFont('Times','B',15);
		$this->pdf->cell(180,3,$this->FUNIVNAME."","0",1,"C");
		$this->pdf->SetFont('Times','B',8);
		$this->pdf->cell(180,7, $this->s_state,"0",1,"C");
		$this->pdf->SetFont('Times','B',13);
		
		$this->pdf->cell(180,7, $this->college_details,"0",1,"C");
		$this->pdf->SetFont('Times','B',11);
		$this->pdf->Cell(180,7,"QPwise Students count","0",1,"C");
		$this->pdf->SetFont('Times','B',15);
		$this->pdf->Cell(180,7," {$this->FEXAMDATE} Examination","0",1,"C");
		$this->pdf->Ln(2);
		$this->pdf->SetFont('Times','',13);
		
	}
	
	function Footer()
	{
		$this->SetY(-15);
		$this->pdf->SetFont('Times','B',8);
		$this->Cell(140,6,'Printed   : IP Address : '.$this->ip." Date ".$this->current_date,'0',0,'L');
		$this->Cell(50,6,'Page '.$this->PageNo().' of {nb}',0,1,'R');
	}
	
	function formcolldata()
	{
		$get_coll_name="select FUNIVNAME as 'FUNIVNAME',
		FUNIVADD1 as 'state', pdf_logo_path From control";
		$lobj_get_coll_name=$this->aobj_context->mobj_db->GetRow($get_coll_name);
		
		$this->FUNIVNAME=$lobj_get_coll_name['FUNIVNAME'];
		$this->s_state=$lobj_get_coll_name['state'];
		$this->f_year=$lobj_get_coll_name['f_year'];
		$this->pdf_logo_path=$lobj_get_coll_name['pdf_logo_path'];

		$get_data="SELECT c.FCOLLCODE,
			CONCAT(c.FCOLLCODE, ' - ', c.FCOLLNAME,', ',c.FTOWN) AS FCOLLNAME FROM college c
			where c.FCOLLCODE='{$this->collcode}'";
		 
		$obj_student=$this->aobj_context->mobj_db->GetRow($get_data); 

		$this->college_details=$obj_student[FCOLLNAME];

		$this->degree_details=" College : {$this->FCOLLNAME}";		

	}

	function GetFullQry()
	{
		$get_data=" select d.FEXAMDATE, s.FQPCODE, date_format(s.FDOE,'%d/%m/%Y') FDOE,
		if(ifnull(s.FSESSION,'')<>'',if(s.FSESSION = r.FREASONCD,r.FDESCPN,s.FSESSION),s.FSESSION) as FDESCPN, concat(s.fsubname, ' ', s.FSSUBNAME) as FSSUBNAME,
		COUNT(c.FSUBCODE) AS FCAPACITY from degree d
		inner join subject s on d.fdegree = s.fdegree and d.fexamno = s.fexamno
		inner join canddet c on s.fdegree = c.fdegree and s.fexamno = c.fexamno and s.fsubcode = c.fsubcode
		inner join candsum m on c.fregno = m.fregno
		left join reason r on r.FREASONCD = s.FSESSION
		where ifnull(frecptdate,'0000-00-00') <> '0000-00-00'
		and c.fpresent = 'P' and ifnull(c.fpassmth,'') = '' 
		AND s.fqpcode between '{$this->qp_code_from}' and '{$this->qp_code_to}'
		group by FQPCODE order by FQPCODE";	
	
		$this->lobj_get_data = $this->aobj_context->mobj_db->GetAll($get_data);
		
		$this->FEXAMDATE=$this->lobj_get_data[0]['FEXAMDATE'];
	}
	
	function formData()
	{

		/* $this->pdf->SetMargins(8,12,10);		
		$this->pdf->AddPage();
		$empty_cell_width=2;
		$sl_no=1;
		$k2 = 1;
		$first = true;
		foreach($this->lobj_get_data as $dk => $dv)
		{
			if($k2 > 30)
			{
				$this->pdf->AddPage();
				$k2 = 1;
			}
			
			if($first == true || $k2 == 1)
			{
				$this->pdf->SetFont('Times','B',10);
				$this->pdf->cell($empty_cell_width,7, ""," ",0,"C");
				$this->pdf->cell(12,7, "Sl. No.","1",0,"C");
				$this->pdf->cell(18,7, "QP Code","1",0,"C");
				$this->pdf->cell(20,7, "Exam Date","1",0,"C");
				$this->pdf->cell(30,7, "Session","1",0,"C");
				$this->pdf->cell(85,7, "Subject Title","1",0,"C");
				$this->pdf->cell(20,7, "Count","1",1,"C");
				$this->pdf->SetFont('Times','',9);
				$first = false;
			}
			
			$this->pdf->cell($empty_cell_width,7, ""," ",0,"C");
			$this->pdf->cell(12,7, $sl_no,"1",0,"C");
			$this->pdf->cell(18,7, $dv['FQPCODE'],"1",0,"C");
			$this->pdf->cell(20,7, $dv['FDOE'],"1",0,"C");
			$this->pdf->cell(30,7, $dv['FDESCPN'],"1",0,"C");
			$this->pdf->SetFont('Times','',8);
			$this->pdf->cell(85,7, $dv['FSSUBNAME'],"1",0,"L");
			$this->pdf->SetFont('Times','',9);
			$this->pdf->cell(20,7, $dv['FCAPACITY'],"1",1,"C");
			$sl_no++;
			$k2++;
		} */

		
	
	}
			 
	function SendOutput()
	{
		$this->pdf->Output("QPwise Students count.pdf","D");
	}
	
}

function GenerateQPwiseCountUnivPdf($aobj_context)
{
	$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);

	$class_obj=new report_ra_qp_wise_student_count();
	$class_obj->AliasNbPages();
	$class_obj->DefaultConstructor($aobj_context);

	$class_obj->GetFullQry();
	 $class_obj->formcolldata();
	$class_obj->formData();
	 
	//$class_obj->SendOutput();
}


function GenerateQPwiseCountUniv($aobj_context)
{
		$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
		$filename = 'university_qpcount.csv';
		$f = fopen('php://output', 'w'); 
		$qp_code_from=trim($aobj_context->mobj_data["qp_code_from"]);
		$qp_code_to=trim($aobj_context->mobj_data["qp_code_to"]);
		$get_data=" select d.FEXAMDATE, s.FQPCODE, date_format(s.FDOE,'%d/%m/%Y') FDOE,
		if(ifnull(s.FSESSION,'')<>'',if(s.FSESSION = r.FREASONCD,r.FDESCPN,s.FSESSION),s.FSESSION) as FDESCPN, concat(s.fsubname, ' ', s.FSSUBNAME) as FSSUBNAME,
		COUNT(c.FSUBCODE) AS FCAPACITY from degree d
		inner join subject s on d.fdegree = s.fdegree and d.fexamno = s.fexamno
		inner join canddet c on s.fdegree = c.fdegree and s.fexamno = c.fexamno and s.fsubcode = c.fsubcode
		inner join candsum m on c.fregno = m.fregno
		left join reason r on r.FREASONCD = s.FSESSION
		where ifnull(frecptdate,'0000-00-00') <> '0000-00-00'
		and c.fpresent = 'P' and ifnull(c.fpassmth,'') = '' 
		AND s.fqpcode between '{$qp_code_from}' and '{$qp_code_to}'
		group by FQPCODE order by FQPCODE";	
	
		$lobj_get_data = $aobj_context->mobj_db->GetAll($get_data);
		$arrW =0;
		$subjRow ='';

		$masArray = array();
		$masArray[] = 'Sl.No';
		$masArray[] = 'QP. Code';
		$masArray[] = 'Exam Date';
		$masArray[] = 'Session';
		$masArray[] = 'Subject Title';
		$masArray[] = 'Count';
		fputcsv($f,array(''));
		fputcsv($f,$masArray);
	 
		// loop over the input array
		foreach ($lobj_get_data as $line)
		{ 
			// generate csv lines from the inner arrays
			fputcsv($f, $line); 
		}
		
		// reset the file pointer to the start of the file
		fseek($f, 0);
		// tell the browser it's going to be a csv file
		header('Content-Type: application/csv');
		// tell the browser we want to save it instead of displaying it
		header('Content-Disposition: attachment; filename="'.$filename.'";');
		// make php send the generated csv lines to the browser
		fpassthru($f);
}
?>