Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/iws8/html/indem/webbioexam/biomedical/
Upload File :
Current File : /var/www/html/mmishra/iws8/html/indem/webbioexam/biomedical/receivedapp.php

<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 &ndash;  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: <a href="mailto:contact@iiita.ac.in">contact@iiita.ac.in</a>
    </td></tr>
</table>
<hr><h3>Online Application Received for Five Year Integrated M. Tech. Program in Bio-Medical Engineering 2012 </h3></center>
<?php
include "javafunctions.inc";
include "functions.inc";
dbConnect();


$tbl = 'tbl_registration';
$sno = 0;

echo "<center> 
<table border=1>
<tr><td><b>Sr No.</b></td>
<td><b>Registration ID</b></td>
<td><b>Photo</b></td>
<td><b>Full Name</b></td>
<td><b>Father Name</b></td>
</tr>";

//$rs = mysql_query("select * from $tbl order by id asc");
$rs = mysql_query("select * from $tbl");
while ($o = mysql_fetch_object($rs)) {
	if ($fullname == strtoupper(trim($o->fullname))) {
	} else {
		$fullname = strtoupper(trim($o->fullname));
		$id = $o->id;
		$sno = $sno + 1;

		$regid = $o->regid;
		$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;
		echo "<tr>
		<td>".$sno."</td>
		<td>".$id."</td>
		<td><img src='photos/$id.jpg' height='50' width='50' /></td>
		<td>".strtoupper($fullname)."<br>".$dob."</td>
		<td>".strtoupper($fathername)."<br>".$address."<br>".$pincode."<br>".$state."</td>
      		</tr>";
	}
}
echo "
</table></center>
";
?>