Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/mm/ada/icdp/www.uprtou.ac.in/
Upload File :
Current File : /var/www/html/mmishra/mm/ada/icdp/www.uprtou.ac.in/examcenter.php

<?php

mysql_select_db("uprtou2010");
$tbl = 'examcenter';

echo "<h3>List of Study Centers</h3>
<table width='100%' border='1' style='border-collapse: collapse; background: url(/images/www/logo.jpg) no-repeat'>
<tr><th>Center Code</th><th>Center Name</th><th>Client Center Code</th><th>Client Center Name</th><th>Session</th><th>Year</th><th>Serial</th></tr>
";

$rs = mysql_query("select * from $tbl");
while ($o = mysql_fetch_object($rs)) {
	echo "<tr valign='top'><td>$o->centercode</td><td>$o->centername</td><td>$o->clientcode</td><td>$o->clientname</th><th>$o->session</th><th>$o->year</th><th>$o->serial</td></tr>";
}
echo "</table>";

mysql_select_db("icdp");

?>