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 : 18.119.135.231
Current Path : /var/www/html/pgadm/ |
| Current File : /var/www/html/pgadm/seat_alloted_list_ou.php |
<?php
$servername = "logisys.cluster-cv9maxyrxjgg.ap-south-1.rds.amazonaws.com";
$username = "admin";
$password = "Logisys2104";
$conn = new mysqli($servername,$username,$password);
if(!$conn)
{
die("Connection failed: " . mysqli_connect_error());
}
$db = "logisys3_vku";
$query = "SELECT d.fdegree, d.fdescpn, CONCAT('seatallot_ou/vskub/',d.fdegree,'.pdf') AS link FROM {$db}.entdeg d
WHERE ifnull(d.fdeleted,'') <> 'T'
and fdegree in('MSMT',
'MCOM',
'MAPS',
'MSBN',
'MAPA',
'MSIC',
'MPED',
'MAHS',
'MSCH',
'MSMB',
'MAEC',
'MSCS',
'MAEN',
'MSPH',
'MTMP',
'MSW',
'MSZL',
'MASG',
'MAKN1',
'MSAG','MED')
order by forder,d.fdescpn";
$result = mysqli_query($conn, $query);
$count = mysqli_num_rows($result);
$query1 = "select funivname, date_format(now(), '%d/%m/%Y %r') as fdate from {$db}.control";
// var_dump(expression)
$result1 = mysqli_query($conn, $query1);
$row1 = mysqli_fetch_assoc($result1);
$table = '<center><h1>'.$row1['funivname'].'</h1>
<h2>Seat Allotment for Outside University Candidates</h2>
<center>
<table style="margin-left:2px;text-align: left;width: 60%;font-size:14px;margin: auto;" align-self="middle" cellspacing="1" cellpadding="5" border="0" align="center" bgcolor="#505151">
<thead>
<tr style = "background-color:#8acc51">
<th width="8%"><center>Sl. No.</center></th>
<th width="15%"><center>Degree code</center></th>
<th><center>Degree Name</center></th>
<th width="25%"><center>Seat Allot List</center></th>
</tr>
</thead>';
$i = 0;
if($count > 0)
{
while($row = mysqli_fetch_assoc($result))
{
$table .= "<tr bgcolor='#ffffff' >";
$table .= "<td><center>".++$i."</center></td>";
$table .= "<td><center>".$row['fdegree']."</center></td>";
$table .= "<td>".$row['fdescpn']."</td>";
$table .= "<td><a href='".$row['link']."' target = 'blank'>Click here for Seat Alloted List</a></td>";
$table .= "</tr>";
}
}
else
{
$table .= "<tr bgcolor='#ffffff' >";
$table .= "<td colspan='4'><center>Merit List Not yet Announced</center></td>";
}
echo $table;
?>
|