Server : Apache System : Linux profile 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64 User : apache ( 48) PHP Version : 8.0.28 Disable Function : NONE Directory : /var/www/html/mmishra/indem/webbioexam/biomedical/ |
<center><table><tr><td colspan=2 align=center><h2>Indian Institute of Information Technology Allahabad</h2></td></tr>
<tr><td width=20% align=center><img src="logo.gif" width="75" height="78" /></td>
<td width=80% align=center>
(A University under Section 3 0f UGC Act 1956)<br>
A Centre of Excellence in Information Technology, Estd. By Min. of HRD, Govt. of India, New Delhi<br>
Devghat Jhalwa, Allahabad – 211012, U.P. (INDIA)<br>
Ph: 0532-2922025,2922067 Fax: 0532-2922081 <br>
Web: <a href="http://www.iiita.ac.in/">www.iiita.ac.in</a> Email:
</td></tr>
</table>
<hr><h3>Online Applicantion Received For Five Year Integrated M. Tech. in Biomedical Engineering 2012-2013 </h3></center>
<?php
include "javafunctions.inc";
include "functions.inc";
dbConnect();
//$tbl = 'tbl_final_alloted';
//$tbl = 'remaining_alloted_1';
$tbl = 'tbl_registration';
$sno = 0;
echo "
<table border=1>
<tr><td><b>Sr No.</b></td>
<td><b>Form No.</b></td>
<td><b>Registration ID</b></td>
<td><b>Full Name/DoB/Gender/Father Name/Mother Name</b></td>
<td><b>Address/Contact Information</b></td>
</tr>";
$rs = mysql_query("select * from $tbl where status='Paid' and flag!=1 order by no asc");
if ($rs) {
while ($o = mysql_fetch_object($rs)){
$sno = $sno + 1;
$id = $o->id;
$no = $o->no;
$fullname = $o->fullname;
$dob = $o->dob;
$gender = $o->gender;
$nationality = $o->nationality;
$category = $o->category;
$fathername = $o->fathername;
$mothername = $o->mothername;
$address = $o->address;
$state = $o->state;
$pincode = $o->pincode;
$phone = $o->phone;
$fax = $o->fax;
$email = $o->email;
$txntype = $o->txntype;
$txnnumber = $o->txnnumber;
$amount = $o->amount;
$depositdate = $o->depositdate;
$bankbranch = $o->bankbranch;
$discipline12 = $o->discipline12;
$board12 = $o->board12;
$year12 = $o->year12;
$percentage12 = $o->percentage12;
$appearing12 = $o->appearing12;
$discipline10 = $o->discipline10;
$board10 = $o->board10;
$year10 = $o->year10;
$percentage10 = $o->percentage10;
$appearing10 = $o->appearing10;
$photo = $o->photo;
$status = $o->status;
$app_status = $o->app_status;
echo "<tr>
<td>".$sno."</td>
<td>".$no."</td>
<td>".$id."</td>";
echo " <td>".ucwords($fullname)."<br>".$dob."<br>".ucwords($gender)."<br>".ucwords($nationality)."<br>".ucwords($fathername)."<br>".ucwords($mothername)."</td>
<td>".ucwords($address)."<br>".ucwords($state)."<br>".$pincode."<br>Contact No. ".$phone."<br>FAX No. ".$fax."<br>Email ".$email."<br></td>
</tr>
";
}}
echo "
</table>
";
?>