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


Current Path : /var/www/html/convocation/Report_details/
Upload File :
Current File : /var/www/html/convocation/Report_details/applicationFormReportNETBANKING.php

<?php
$main_src=substr($_SERVER['SCRIPT_FILENAME'],0,strlen($_SERVER['SCRIPT_FILENAME'])-7);
$pdf_writer_class =$main_src."/tcpdf/tcpdf.php";
require_once($pdf_writer_class);
	
class certificate_print  extends TCPDF
{
		function DefaultConstructor($aobj_context)
		{
			$this->aobj_context=$aobj_context;
			$this->pdf=  new TCPDF();
			$this->pdf=$this;
			$this->app_no=trim($this->aobj_context->mobj_data["app_no"]);
			$this->ip=$_SERVER["REMOTE_ADDR"];
			$get_date="select now() as now_date from control";
			$obj=$this->aobj_context->mobj_db->GetRow($get_date);
			$this->current_date=$obj['now_date'];	
			$this->FYEAR=$obj['FYEAR']; 
		}
		 
		 
		function Header()
		{


		}	
		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');
		}
	 
	 function formcolldata()
	 {
		$get_coll_name="select FUNIVNAME as FUNIVNAME ,FTOWN,
				FUNIVADD1 as 'state', pdf_logo_path,FUNIVCODE,ffolder 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->FTOWN=$lobj_get_coll_name['FTOWN'];
		$this->ffolder = $lobj_get_coll_name['ffolder'];
        $this->FUNIVCODE = $lobj_get_coll_name['FUNIVCODE'];
		$this->pdf_logo_path=$lobj_get_coll_name['pdf_logo_path'];
	 
		
	 }
	 
		function GetQry()
		{
			$cnd = "and ifnull(FPAYSTATUS,'') = 'success'";
        if ($this->FUNIVCODE == '040')
            $cnd = "";
        $get_data = "SELECT s.*, DATE_FORMAT(s.FDOB,'%d/%m/%Y') AS DOB,DATE_FORMAT(s.FPAYDATE,'%d/%m/%Y') AS FPAYDATE,
			DATE_FORMAT(s.FREGDATE,'%d/%m/%Y') AS FDATE,d.FDESCPN,c.FCOLLCODE,c.FCOLLNAME,s.FPHOTOPATH,s.fcatcode as FCASTE,s.FAMOUNT,
			mascnvfee.FCNVNAME,s.FAPPNO,st.FDEGREE,s.FREGNO,st.fprevpaid as fprevpaid,
			stu.FPHOTOPATH as studphoto,st.fclass,st.fcexam,
			ifnull(d.fdcmsg,'F') as fdcmsg,
			ifnull(st.fcertificateno,'') as fcertificateno
			FROM dctran s inner join dcstud st on s.FREGNO = st.FREGNO 
			inner join degree d on 
			d.FDEGREE=st.FDEGREE and d.fexamno = 'A'
			left join student stu on s.fregno = stu.fregno
			inner join college c  on c.FCOLLCODE = st.FCOLLCODE 
			inner join mascnvfee on mascnvfee.FCNVNO =  st.FCNVNO
			WHERE s.FAPPNO='{$this->app_no}'
		{$cnd}";
			$rst= $this->aobj_context->mobj_db->GetRow($get_data);
			//echo $get_data;
			$this->FNAME=$rst['FNAME'];
			$this->FDATE=$rst['FDATE'];
			$this->FDEGREE=$rst['FDESCPN'];
			$this->FREGNO=$rst['FREGNO'];
			$this->FCOLLCODE=$rst['FCOLLCODE'];
			$this->FCOLLNAME=$rst['FCOLLNAME'];
			$this->FDOB=$rst['DOB'];
			$this->FCASTE=$rst['FCASTE'];
			$this->FAMOUNT=$rst['FAMOUNT'];
			$this->FCNVNAME=$rst['FCNVNAME'];
			$this->FMOBILE=$rst['FMOBILE'];
			$this->FEMAIL=$rst['FEMAIL'];
			$this->FADDR1=$rst['FPOSTADDR1'];
			$this->FADDR2=$rst['FPOSTADDR2'];
			$this->FADDR3=$rst['FCITY'];
			$this->FADDR4=$rst['FSTATE']."-".$rst['FPINCODE'];
			$this->FPAYTYPE=$rst['FPAYTYPE'];
      		$this->FTRANID=$rst['FTRANID'];
			$this->FPAYDATE=$rst['FPAYDATE'];
			$this->FPAYSTATUS=$rst['FPAYSTATUS'];
			$this->FPHOTO=$rst['FPHOTOPATH'];
			$this->fprevpaid=$rst['fprevpaid'];
			$this->FRCTYPE=$rst['FRCTYPE'];
			$this->FNATIONAL=$rst['FNATIONAL'];
			$this->FAADHAR=$rst['FAADHAR'];
			$this->fcexam=$rst['fcexam'];
			$this->fclass=$rst['fclass'];
			$this->fdcmsg=$rst['fdcmsg'];
			$this->fvname1 = $rst['fvname1'];
			$this->fvname2 = $rst['fvname2'];
			$this->fvrelation1 = $rst['fvrelation1'];
			$this->fvrelation2 = $rst['fvrelation2'];
			$this->fvemail1 = $rst['fvemail1'];
			$this->fvemail2 = $rst['fvemail2'];
			$this->fvmob2 = $rst['fvmob2'];
			$this->fvmob1 = $rst['fvmob1'];
			$this->fcertificateno = $rst['fcertificateno'];

			$this->full_photo_path=trim($this->aobj_context->main_src."/". $this->FPHOTO);		 		 
		}
		
		function formData()
		{
			$this->pdf->SetMargins(13, 15, 10);
			include("getnumword.php");
			$this->pdf->AddPage("P");
	
			if (!empty($this->pdf_logo_path)) {
				$img_logo_path = $this->aobj_context->main_src . "/img/logo_" . $this->ffolder . ".jpg";
				$this->pdf->Image($img_logo_path, 10, 15, 20);
			}
	
			$this->pdf->Rect(5, 10, 200, 280);
			$this->pdf->SetFont('Times', 'B', 15);
			$this->pdf->cell(0, 6, $this->FUNIVNAME, "0", 1, "C");
			$this->pdf->SetFont('Times', 'B', 10);
			$this->pdf->cell(0, 5, $this->s_state, "0", 1, "C");
			$this->pdf->SetFont('Times', 'B', 12);
			$this->pdf->Ln(5);
			$this->pdf->SetFont('Times', 'BU', 15);
			// if($this->FUNIVCODE == '040')
			// {
			// 	$this->pdf->cell(0,6,"Application for - ".$this->FCNVNAME,"0",1,"C");
			// }else
			// 	$this->pdf->cell(0,6,"Convocation Application","0",1,"C");
			$this->pdf->cell(0, 6, "APPLICATION FOR " . $this->FCNVNAME, "0", 1, "C");
			$this->pdf->Ln(2);
	
			//if($this->FUNIVCODE == '040')
			//{
			if ($this->FUNIVCODE == '040' || $this->FUNIVCODE == '041' || $this->FUNIVCODE == '001' || $this->FUNIVCODE == '026'||$this->FUNIVCODE == '018' ||$this->FUNIVCODE == '005')
				$path = "https://university-cnv-student-photos.s3.ap-south-1.amazonaws.com/" . $this->FUNIVCODE . '/' . $this->FPHOTO;
			else
				$path = "https://university-student-photos.s3.ap-south-1.amazonaws.com/" . $this->FUNIVCODE . '/' . $this->studphoto;

			
			$this->pdf->Ln(1);
			$this->pdf->SetFont('Times', 'B', 15);
			//$this->pdf->Cell(146,7,"Convocation : {$this->FCNVNAME}","0",1,"L");
	
	
			$address = $this->FADDR1 . ' ' . $this->FADDR2 . ' ' . $this->FADDR3 . ' ' . $this->FADDR4;
			
			$totalsum = $this->FAMOUNT + $this->fprevpaid;
			$rollno = "Reg. No.";
			if($this->FUNIVCODE == '018')
				$rollno = "Roll No.";
			$this->pdf->SetFont('Times', '', 10);
			$tbl1 = '
					<style>
					td {
					border: 0.5px solid black;
					}
					.lable {
					font-weight: bold;
					}
					</style>
					<table cellpadding="3" cellspacing="0" nobr="true">
					<tr>
						<td width="100" align="left"><b>Application No.</b></td>
						<td width="80" align="left">' . $this->app_no . '</td>
						<td width="80" align="left" ><b>Date</b></td>
						<td width="80" align="left">' . $this->FDATE . '</td>
						<td width="80" align="left" ><b>'.$rollno.'</b></td>
						<td width="100" align="left">' . $this->FREGNO . '</td>
					</tr>';
					if($this->FUNIVCODE != '018'){
					$tbl1.='
					<tr>
						<td width="100" align="left"><b>Name</b></td>
						<td width="320" align="left">' . $this->FNAME . '</td>
						<td width="100" rowspan="3"><img width="85" height="60" src="' . $path . '" ></td>
					</tr>';}
					else{
						$tbl1.='
						<tr>
						<td width="100" align="left"><b>Name</b></td>
						<td width="320" align="left">' . $this->FNAME . '</td>
						<td width="100" rowspan="3"><img width="90" height="65" src="' . $path . '" ></td>
					</tr>';
					}
					$tbl1.='
					<tr>
						<td width="100" align="left"><b>Degree</b></td>
						<td width="320" align="left">' . $this->FDEGREE . '</td>
					</tr>
					<tr>
						<td width="100" align="left"><b>College / Department</b></td>
						<td width="320" align="left">' . $this->FCOLLNAME . '</td>
					</tr>';

					if($this->FUNIVCODE == '001')
					{
						$tbl1 .= '
						<tr>
								<td width="100" align="left"><b>Class</b></td>
								<td width="160" align="left">' . $this->fclass . '</td>
								<td width="100" align="left" ><b>Passing Month</b></td>
								<td width="160" align="left">' . $this->fcexam . '</td>
						</tr>';
					}
					if($this->FUNIVCODE != '018' && $this->FUNIVCODE != '005'){
					$tbl1 .='<tr>
						<td width="100" align="left"><b>Date of Birth</b></td>
						<td width="80" align="left">' . $this->FDOB . '</td>
						<td width="80" align="left" ><b>Category</b></td>
						<td width="80" align="left">' . $this->FCASTE . '</td>
						<td width="80" align="left" ><b>Nationality</b></td>
						<td width="100" align="left">' . $this->FNATIONAL . '</td>
					</tr>';
					}

					$tbl1 .='
					<tr>
						<td width="100" align="left"><b>Mobile</b></td>
						<td width="80" align="left">' . $this->FMOBILE . '</td>
						<td width="80" align="left" ><b>Email</b></td>
						<td width="260" align="left">' . $this->FEMAIL . '</td>
					</tr>
					<tr>
						<td width="100" align="left"><b>Address</b></td>
						<td width="420" align="left">' . $address . '</td>

					</tr>';
					if($this->FUNIVCODE == '005')
					{
						$tbl1 .='<tr>
							<td width="100" align="left"><b>Serial No.</b></td>
							<td width="420" align="left">' . $this->fcertificateno . '</td>
						</tr>';
					}
					
					$tbl1 .='</table>';

					

					// if($this->FUNIVCODE == '041')
					// {
					// 	$tbl1 .= '<tr>
					// 	<td width="100" align="left"><b>Total Amount</b></td>
					// 	<td width="80" align="left">' . $totalsum . '</td>
					// 	<td width="80" align="left" ><b>Amount in Words</b></td>
					// 	<td width="260" align="left">' . number_to_words($totalsum) . '</td>
					// 	</tr>';
					// }else
					// {
					// 	$tbl1 .= '<tr>
					// 	<td width="100" align="left"><b>Receive Certificate</b></td>
					// 	<td width="80" align="left">' . $this->FRCTYPE . '</td>
					// 	<td width="80" align="left" ><b>Total Amount</b></td>
					// 	<td width="260" align="left">' . $totalsum . '</td>
					// 	</tr>';
	
					// }
	
			// if ($this->FUNIVCODE != '040') {
	
			// 	if($this->FUNIVCODE == '041')
			// 	{
			// 		if($this->FPAYSTATUS == 'success')
			// 		{
			// 			$this->FPAYSTATUS = "Received at University";
			// 		}
			// 	}    
	
			// 	$tbl1 .= '<tr>
			// 			<td width="100" align="left"><b>Payment Status</b></td>
			// 			<td width="80" align="left">' . $this->FPAYSTATUS . '</td>
			// 			<td width="80" align="left" ><b>Payment Date</b></td>
			// 			<td width="260" align="left">' . $this->FPAYDATE . '</td>
			// 			</tr>
			// 			<tr>
			// 				<td width="100" align="left"><b>Payment Id</b></td>
			// 				<td width="420" align="left">' . $this->FTRANID . '</td>
			// 			</tr>';
			// }
			$tbl1 .= '</table>';

			$tbl2 = '
			<style>
			td {
			border: 0.5px solid black;
			}
			.lable {
			font-weight: bold;
			}
			</style>
			<table cellpadding="3" cellspacing="0" nobr="true">
			<tr><td width="520" align="center"><b>Payment Details</b></td></tr>';

			if ($this->FUNIVCODE == '041') {
					$tbl2 .= '
					<tr>
							<td width="100" align="left"><b>Total Amount</b></td>
							<td width="80" align="left">' . $totalsum . '</td>
							<td width="80" align="left" ><b>Amount in Words</b></td>
							<td width="260" align="left">' . number_to_words($totalsum) . '</td>
					</tr>';
			} else {
				if($this->FUNIVCODE == '026')
				{
					$tbl2 .= '<tr>
							<td width="100" align="left"><b>Convocation Type</b></td>
							<td width="160" align="left">' . $this->FRCTYPE . '</td>
							<td width="100" align="left" ><b>Total Amount</b></td>
							<td width="160" align="left">' . $totalsum . '</td>
					</tr>';

				}else
				{
					$tbl2 .= '
					<tr>
							<td width="100" align="left"><b>Receive Certificate</b></td>
							<td width="160" align="left"><b>' . $this->FRCTYPE . '</b></td>
							<td width="100" align="left" ><b>Total Amount</b></td>
							<td width="160" align="left">' . $totalsum . '</td>
					</tr>';
				}
			}

			if ($this->FUNIVCODE != '040') {

					if ($this->FUNIVCODE == '041') {
							if ($this->FPAYSTATUS == 'success') {
									$this->FPAYSTATUS = "Received at University";
							}
					}

					$tbl2 .= '<tr>
				<td width="100" align="left"><b>Payment Status</b></td>
				<td width="160" align="left">' . $this->FPAYSTATUS . '</td>
				<td width="100" align="left" ><b>Payment Date</b></td>
				<td width="160" align="left">' . $this->FPAYDATE . '</td>
				</tr>
				<tr>
					<td width="100" align="left"><b>Transaction Id</b></td>
					<td width="420" align="left">' . $this->FTRANID . '</td>
				</tr>';
			}
			$tbl2 .= '</table>';
			//echo $tbl1;
			$this->pdf->writeHTML($tbl1, true, false, false, false, '');
			$this->pdf->writeHTML($tbl2, true, false, false, false, '');

			if($this->FUNIVCODE == '018')
			{

				if($this->fvname1 != '') 
				{
					$tbl3 = '
					<style>
					td {
					border: 0.5px solid black;
					}
					.lable {
					font-weight: bold;
					}
					</style>
					<table cellpadding="3" cellspacing="0" nobr="true">
					<tr><td width="520" align="center"><b>Submitted Parent Details (For Medalist applicants only)</b></td></tr>';

					$tbl3 .= '<tr>
						<td width="100" align="left"><b>Visitor 1 Name</b></td>
						<td width="160" align="left">' . $this->fvname1 . '</td>
						<td width="100" align="left" ><b>Visitor 2 Name</b></td>
						<td width="160" align="left">' . $this->fvname2 . '</td>
						</tr>
						<tr>
						<td width="100" align="left"><b>Relation with Candidate</b></td>
						<td width="160" align="left">' . $this->fvrelation1 . '</td>
						<td width="100" align="left" ><b>Relation with Candidate</b></td>
						<td width="160" align="left">' . $this->fvrelation2 . '</td>
						</tr>
						<tr>
						<td width="100" align="left"><b>Email id</b></td>
						<td width="160" align="left">' . $this->fvemail1 . '</td>
						<td width="100" align="left" ><b>Email id</b></td>
						<td width="160" align="left">' . $this->fvemail2 . '</td>
						</tr>
						<tr>
						<td width="100" align="left"><b>Phone number</b></td>
						<td width="160" align="left">' . $this->fvmob1 . '</td>
						<td width="100" align="left" ><b>Phone number</b></td>
						<td width="160" align="left">' . $this->fvmob2 . '</td>
						</tr>';
						$tbl3 .= '</table>';
						$this->pdf->writeHTML($tbl3, true, false, false, false, '');

				}
			}

			if ($this->FUNIVCODE == '040') {
				
				$this->pdf->Ln(4);
				$this->pdf->cell(0, 6, "Certified that I have furnished the required details to the best of my knowledge", "0", 1, "C");
				$this->pdf->Ln(8);
				$this->pdf->SetFont('Times', 'B', 10);
				$this->pdf->cell(75, 6, "Date", "0", 0, "L");
				$this->pdf->cell(100, 6, "Signature of the Candidate", "0", 1, "R");
				$new_y = $this->pdf->GetY();
				$this->pdf->Line(10, $new_y, 200, $new_y);
				$this->pdf->Ln(2);
				$this->pdf->cell(0, 6, " The information furnished by the candidate as above is correct as per the records maintained in the college", "0", 1, "C");
				$this->pdf->Ln(10);
				$this->pdf->SetFont('Times', 'B', 10);
				$this->pdf->cell(75, 6, "Date", "0", 0, "L");
				$this->pdf->cell(100, 6, "Principal with seal", "0", 1, "R");
				$this->pdf->SetFont('Times', 'B', 9);
				$this->pdf->cell(0, 6, "INSTRUCTIONS TO CANDIDATE", "0", 1, "C");
	
				$tbl = '
					<table border="1" cellpadding="2" cellspacing="0" nobr="true">
					<tr>
						<th colspan="2" align="center">NEFT / RTGS Details</th>
					</tr>
					<tr>
						<td>Beneficiary name and address</td>
						<td>Adichunchanagiri University</td>
					</tr>
					<tr>
						<td>Bank Account Number</td>
						<td>8610101026131</td>
					</tr>
					<tr>
						<td>Name of Bank</td>
						<td>Canara Bank</td>
					</tr>
					<tr>
						<td>Branch name and address</td>
						<td>AIMS, B G Nagara</td>
					</tr>
					<tr>
					<td>IFSC Code</td>
					<td>CNRB0008610</td>
					</tr>
					</table>';
	
				$this->pdf->SetFont('Times', '', 8);
				$this->pdf->cell(0, 6, "01.	Photo copies of marks cards (Annual/Semester) of all the examinations should be enclosed (with attestation)", "0", 1, "L");
				$this->pdf->cell(0, 6, "02.	Recent Passport size Colour photographs [to be put in separate cover and staple it with application) of the Candidates", "0", 1, "L");
				$this->pdf->cell(0, 6, "03.	Prescribed Fee shall be made through NEFT / RTGS.", "0", 1, "L");
				$this->pdf->writeHTML($tbl, true, false, false, false, '');
				$this->pdf->cell(0, 6, "04.	Prescribed Fees once paid will not be refunded / adjusted for future convocations.", "0", 1, "L");
				$this->pdf->cell(0, 6, "05.	Manual applications / application submitted after the due date will not be accepted.", "0", 1, "L");
				$this->pdf->cell(0, 6, "06.	Application should routed through the Principal of the Constituent College only. No applications will be accepted directly in the University.", "0", 1, "L");
				$this->pdf->cell(0, 6, "07.	Incomplete / Incorrect applications will be rejected", "0", 1, "L");
				$this->pdf->cell(0, 6, "08.	Candidated admitted to the convocation IN ABSENTIA will be sent by Register Post to the address provided by the candidate in the application form.", "0", 1, "L");
			} else {
				$this->pdf->Ln(5);
				if($this->FUNIVCODE == '018')
				{
					$this->pdf->SetFont('Times', 'B', 10);
					$this->pdf->MultiCell(180, 0, "Please produce print copy of this application at the time of convocation as proof of registration", "0", "L");
				}

				$new_y = $this->pdf->GetY();
				$this->pdf->Line(10, $new_y, 200, $new_y);
				$this->pdf->Ln(5);
				$this->pdf->SetFont('Times', 'BU', 12);
				$this->pdf->cell(0, 6, "DECLARATION", "0", 1, "C");
				$this->pdf->Ln(2);
				$this->pdf->SetFont('Times', '', 9);
				if($this->FUNIVCODE == '001')
				{
					$this->pdf->MultiCell(180, 0, "The information given above is accurate and correct to the best of my knowledge and belief. I have not suppressed any information, and I have provided all the information to the University for the award of the Degree Certificate. If any information found to be untrue, the University is at liberty to withdraw my Degree.", "0", "L");
				}else if($this->FUNIVCODE == '018')
				{	
					if($this->fdcmsg == 'T')
					{	
						$this->pdf->SetFont('Times', 'B', 11);
						$this->pdf->MultiCell(180, 0, "Candidates having aggregate score less than 45.0% in the honous subjects shall be awarded Simple Pass Degree as per Regulation.", "0", "L");
						$this->pdf->SetFont('Times', '', 9);
						$this->pdf->Ln(2);
					}

					$this->pdf->MultiCell(180, 0, "The information provided herein above is accurate and correct to the best of my knowledge and belief. In case any of the information above is found untrue/incomplete, I understand that i shall be held liable, my application may be deemed invalid and I may not be eligible for refund of application fees. I also hereby undertake to abide by all the rules and regulations of the University governing the award of the certificate.", "0", "L");
				}
				else 
				{
					$this->pdf->MultiCell(180, 0, "I HEREBY SOLEMNLY DECLARE AND PROMISE THAT IF ADMITTED TO THE DEGREE OF ............................................. FOR 
					WHICH I HAVE BEEN RECOMMENDED, I SHALL IN MY DAILY LIFE AND CONVERSATION, CONDUCT MYSELF, AS BEFITS A MEMBER OF THIS UNIVERSITY THAT I SHALL TO THE UTMOST OF MY CAPACITY AND OPPORTUNITY, SUPPORT THE CAUSE OF MORALITY AND SOUND LEARNING, AND THAT, AS FAR AS IN ME LIES, I SHALL UPHELD AND ADVANCE THE SOCIAL ORDER AND THE WELL BEING OF MY FELLOWMEN IN THE CASE OF PROFESSIONAL DEGREE, THE FOLLOWING SHALL BE ADDED TO THE ABOVE DECLARATION. I SHALL FAITHFULLY AND CAREFULLY FULFIL THE DUTIES OF THE PROFESSION TO WHICH I MAY BE ADMITTED BY VIRTUE OF MY DEGREE, THAT I SHALL ON ALL OCCASIONS MAINTAIN ITS PURITY AND REPUTATION AND I SHALL NEVER DEVIATE FROM THE STRAIGHT PATH OF THEIR HONOURABLE EXCERCISE BY MAKING MY KNOWLEDGE SUBSERVIENT TO UNWORTHY ENDS.", "0", "J");
				}	
				$this->pdf->Ln(15);
				$this->pdf->SetFont('Times', 'B', 10);
				if($this->FUNIVCODE == '001' || $this->FUNIVCODE == '018')
				{
					$this->pdf->cell(0, 6, "Signature of the Candidate", "0", 1, "R");
				}else
				{
					$this->pdf->cell(105, 6, "Signature of the Candidate", "0", 0, "L");
					
					$this->pdf->cell(75, 6, "Principal Signature with seal", "0", 1, "R");
				}
				
					
			}
		}		
		
		function SendOutput()
		{
			$this->pdf->Output("certificate_{$this->app_no}.pdf","D");
		}
		
		 
}

function appFormNETBANKING($aobj_context)
{
	$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
	$class_obj=new certificate_print();
	// $class_obj->AliasNbPages();
	$class_obj->DefaultConstructor($aobj_context);
	$class_obj->formcolldata();
	$class_obj->GetQry();
	$class_obj->formData();
	$class_obj->SendOutput();
}

?>