| Current Path : /var/www/html/mmishra/mm/bmb/www.uprtou.ac.in/ |
| Current File : /var/www/html/mmishra/mm/bmb/www.uprtou.ac.in/studycenter.php |
<?php
mysql_select_db("uprtou2010");
$tbl = 'studycenter';
echo "
<table width='100%' border='1' style='border-colapse: collapse; background: url(/images/www/logo.jpg) no-repeat'>
<tr><th>Center Code</th><th>Center Name</th><th>Phone</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->phone</td><td>$o->serial</td></tr>";
}
echo "</table>";
mysql_select_db("icdp");
?>