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.142.135.24
<?php
$main_src=substr($_SERVER['SCRIPT_FILENAME'],0,strlen($_SERVER['SCRIPT_FILENAME'])-7);
//$pdf_writer_class =$main_src."/tarka_pdf/fpdf.php";
$pdf_writer_class =$main_src."/tcpdf/tcpdf.php";
require_once($pdf_writer_class);
ini_set('memory_limit','900M');
ini_set('max_execution_time',0);
class MYPDF extends TCPDF {
public $aobj_context;
public function setData($aobj_context){
$this->aobj_context = $aobj_context;
}
public function Header() {
// get the current page break margin
$bMargin = $this->getBreakMargin();
// get current auto-page-break mode
$auto_page_break = $this->AutoPageBreak;
// disable auto-page-break
$this->SetAutoPageBreak(false, 0);
// set bacground image
$this->SetMargins(10,34,20,true);
$this->SetFillColor(248, 248 ,255);
$img_path = $this->aobj_context->main_src."/img/logo.jpg";
if(file_exists($img_path))
$this->Image($img_path,10,6,20,20);
$this->SetFont('Times','B',13);
$this->SetY(5);
$this->Cell(0,4,$this->aobj_context->FUNIVNAME,0,1,'C');
//state
$this->SetFont('Times','',11);
$this->Cell(0,4,$this->aobj_context->s_state,0,1,'C');
$this->SetFont('Times','B',12);
$this->Cell(0,4,'College : '.$this->aobj_context->col_name,0,1,'C');
$this->SetFont('Times','B',12);
$this->Ln(1);
$cur_year = date("Y");
$this->Cell(180,5,'Application for College transfer with in the University ('.$cur_year.')','0',1,'C');
$this->Ln(1);
$this->Cell(180,5,'Course : '.$this->aobj_context->degree,'0',1,'C');
$this->Ln(1);
$style = array(
'position' => 'right',
'align' => 'C',
'stretch' => false,
'fitwidth' => true,
'cellfitalign' => '',
'border' => false,
'hpadding' => 'auto',
'vpadding' => 'auto',
'fgcolor' => array(0,0,0),
'bgcolor' => false, //array(255,255,255),
'text' => true,
'font' => 'helvetica',
'fontsize' => 8,
'stretchtext' => 4
);
// var_dump($this->aobj_context->FAPPNO);
$this->write1DBarcode($this->aobj_context->FAPPNO, 'C39', '155', '20','130', 16, 0.3, $style, 'R');
// restore auto-page-break status
$this->SetAutoPageBreak($auto_page_break, $bMargin);
// set the starting point for the page content
}
public function Footer()
{
$this->SetY(-15);
$this->SetFont('helvetica', 'I', 8);
$this->Cell(50, 10,'IP : '.$_SERVER["REMOTE_ADDR"], 0, 0, 'L');
$this->Cell(100, 10,'Date : ' .$this->aobj_context->current_date, 0, 0, 'C');
$this->Cell(50, 10,'Page ' .$this->getPageNumGroupAlias().'/'.$this->getPageGroupAlias(), 0, 1, 'R');
}
}
class AddmissionApplication
{
function DefaultConstructor($aobj_context)
{
$this->aobj_context=$aobj_context;
//$this->pdf= new FPDF();
$this->collcode=$_SESSION['collcode'];
$this->ip=$_SERVER["REMOTE_ADDR"];
$get_date="select DATE_FORMAT(now(), '%d/%m/%Y') as now_date";
$obj=$this->aobj_context->mobj_db->GetRow($get_date);
$this->aobj_context->current_date = $obj['now_date'];
$this->current_date = $obj['now_date'];
$get_coll_name="select FUNIVNAME as 'FUNIVNAME',FUNIVCODE,
FUNIVADD1 as 'state', pdf_logo_path,
ifnull(FEXAMAPPREQ,'F') as FEXAMAPPREQ From control";
$lobj_get_coll_name=$this->aobj_context->mobj_db->GetRow($get_coll_name);
$aobj_context->FUNIVNAME=$lobj_get_coll_name['FUNIVNAME'];
$aobj_context->s_state=$lobj_get_coll_name['state'];
$aobj_context->pdf_logo_path=$lobj_get_coll_name['pdf_logo_path'];
$aobj_context->FEXAMAPPREQ=$lobj_get_coll_name['FEXAMAPPREQ'];
$aobj_context->FUNIVCODE=$lobj_get_coll_name['FUNIVCODE'];
$get_college_name="select concat(FCOLLNAME,', ',FTOWN) as col_name from college where FCOLLCODE='{$aobj_context->fcollcode}'";
$lobj_get_college_name = $this->aobj_context->mobj_db->GetRow($get_college_name);
$aobj_context->col_name = $lobj_get_college_name['col_name'];
$aobj_context->degree = $aobj_context->fdegree;
$this->pdf= new MYPDF('P');
$this->pdf->setData($aobj_context);
}
function formcolldata()
{
$get_coll_name="select FUNIVNAME as 'FUNIVNAME',FUNIVCODE,
FUNIVADD1 as 'state', pdf_logo_path,
ifnull(FEXAMAPPREQ,'F') as FEXAMAPPREQ 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->pdf_logo_path=$lobj_get_coll_name['pdf_logo_path'];
$this->FEXAMAPPREQ=$lobj_get_coll_name['FEXAMAPPREQ'];
$this->FUNIVCODE=$lobj_get_coll_name['FUNIVCODE'];
}
function writeApplication($per_details)
{
$pdf=$this->pdf;
$pdf->SetMargins(10,40,20,false);
$pdf->startPageGroup();
$pdf->AddPage("P");
$pdf->SetFont('Times','',11);
//====================Personal Details====================================
$html = '<h3 style="background-color: #918988; color: rgb(255, 255, 255);"> Personal Details</h3>';
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->writeHTMLCell(188,0,$x,$y,$html, false,1, false, true, '', false);
$pdf->ln(2);
// $path = realpath(__DIR__ . '/..');
$path = "https://university-student-photos.s3.ap-south-1.amazonaws.com/".$_SESSION['FUNIVCODE'];
// var_dump($path.'/'.$per_details['fphotopath']);
$i= 1;
$table1 = '<style>
td {
border: 0.5px solid black;
}
.lable {
font-weight: bold;
}
</style>
<table cellpadding="3" cellspacing="0">
<tr nobr="true">
<td width="150" class="lable">Register No.</td>
<td width="270" colspan="2" style = "font-size:15px;">'.$per_details['fregno'].'</td>
<td width="100" rowspan="5"><img width="100" height="100" src="'.$path.'/'.$per_details['fphotopath'].'" ></td>
</tr>';
$table1 .='<tr nobr="true">
<td width="150" class="lable">Name of the Applicant</td>
<td width="270" colspan="2">'.$per_details['FNAME'].'</td></tr>';
$table1 .='<tr nobr="true">
<td width="150" class="lable" >Father`s /Guardian`s Name</td>
<td width="270" colspan="2">'.$per_details['FFATNAME'].'</td></tr>';
$table1 .='<tr nobr="true">
<td width="150" class="lable">Mother`s Name</td>
<td width="270" colspan="2">'.$per_details['FMOTNAME'].'</td></tr>';
$table1 .='<tr nobr="true">
<td width="150" class="lable">Date of Birth</td>
<td width="135">'.$per_details['fdob'].'</td>
<td width="70" class="lable">Gender</td>
<td width="65">'.$per_details['FSEX'].'</td>
</tr>';
$table1 .='<tr nobr="true">
<td width="150" class="lable">Nationality</td>
<td width="135">'.$per_details['FNATIONAL'].'</td>
<td width="70" class="lable">Religion</td>
<td width="165">'.$per_details['freligion'].'</td>
</tr>';
$table1 .='<tr nobr="true">
<td width="150" class="lable">Mobile No.</td>
<td width="135">'.$per_details['FCONTACT_NO'].'</td>
<td width="70" class="lable">Category</td>
<td width="165" >'.$per_details['FCASTE'].'</td>
</tr>';
$table1 .='<tr nobr="true">
<td width="150" class="lable">Permanent Address</td>
<td width="370">'.$per_details['fperadd'].'</td>
</tr>';
$table1 .= '<tr nobr="true">
<td width="150" class="lable">Communication Address</td>
<td width="370">'.$per_details['fcuradd'].'</td>
</tr>';
$table1 .= '<tr nobr="true">
<td width="150" class="lable">Email Address</td>
<td width="370">'.$per_details['FEMAIL'].'</td>
</tr>';
$table1 .= '<tr nobr="true">
<td width="150" class="lable">Fee Paid</td>
<td width="135"> Rs. '.$per_details['ffee'].' /-</td>
<td width="70" class="lable">Remarks</td>
<td width="165">'.$per_details['fremarks'].'</td>
</tr>';
$table1 .= '<tr nobr="true">
<td width="150" class="lable">Previous college</td>
<td width="370">'.$per_details['foldcollege'].'</td>
</tr>';
$table1 .= '</table>';
$pdf->SetX(11);
$pdf->writeHTML($table1, true, true, false, false, 'L');
$pdf->ln(10);
$pdf->SetFont('Times','B',10);
$pdf->Cell(160,4,'Date',0,0,'L');
$pdf->Cell(30,4,'Signature of the Student ',0,1,'R');
$pdf->ln(3);
$pdf->SetFont('Times','B',10);
$pdf->ln(10);
$pdf->Cell(160,4,'Date:',0,0,'L');
$pdf->Cell(30,4,'Signature of the Principal with Seal',0,1,'R');
$pdf->ln(2);
}
function SendOutput()
{
$this->pdf->Output("Application_letter{$this->current_date}.pdf","I");
}
}
function studLatStudwise($aobj_context)
{
$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
$get_coll_name="select FUNIVNAME as 'FUNIVNAME',FUNIVCODE,
FUNIVADD1 as 'state', pdf_logo_path,
ifnull(FEXAMAPPREQ,'F') as FEXAMAPPREQ From control";
$lobj_get_coll_name=$aobj_context->mobj_db->GetRow($get_coll_name);
$fregno = trim($aobj_context->mobj_data["fregno"]);
$per_details_query = "select sa.FNAME,sa.FAPPNO, sa.FFATNAME,sa.fslno, sl.fcollcode,
concat(sl.fdegree, '-',dg.fdescpn) as fdegree, sl.fregno,
concat(sl.foldcollcode,'-', cl.fcollname,', ', cl.ftown) as foldcollege, fphotopath,
sa.FMOTNAME, if(ifnull(sa.fgender,'') = 'M','Male',if(ifnull(sa.fgender,'') = 'F','Female','Transgender')) as FSEX,
replace(replace(ifnull(sa.fblood_group,''),'P','+'),'M','-') as fblood_group,
ifnull(sa.freligion,'') as freligion,
ifnull(sa.FCASTE,'') as FCASTE,
sa.FNATIONAL, date_format(sa.FDOB,'%d/%m/%Y') as fdob,
sa.FAADHARNO,
concat(ifnull(sa.FCURRADD1,''),' ', ifnull(sa.FCURRADD2,''), ' ',
ifnull(sa.FCURRADD3,''), ' ', ifnull(sa.FCURRADD4,'') ) as fcuradd,
concat(ifnull(sa.FPERMADD1,''),' ', ifnull(sa.FPERMADD2,''), ' ',
ifnull(sa.FPERMADD3,''), ' ', ifnull(sa.FPERMADD4,'')) as fperadd,
ifnull(sa.FCONTACT_NO,'') as FCONTACT_NO, ifnull(sa.FEMAIL,'') as FEMAIL,
sl.ffee, sl.fremarks
FROM studlat sl inner join student sa on sl.fregno = sa.fregno
inner join degree dg
on sa.fdegree = dg.fdegree
and sa.fexamno = dg.fexamno inner join college cl
on sl.foldcollcode = cl.fcollcode
WHERE sa.fregno = '{$fregno}'";
$per_details = $aobj_context->mobj_db->GetRow($per_details_query);
$aobj_context->FAPPNO = $per_details['fregno'];
$aobj_context->fcollcode = $per_details['fcollcode'];
$aobj_context->fdegree = $per_details['fdegree'];
$class_obj = new AddmissionApplication();
$class_obj->DefaultConstructor($aobj_context);
$class_obj->writeApplication($per_details);
$class_obj->SendOutput();
}
?>
|