|
$qu="select * from staff where flag='A' order by priority ASC,staff_name ASC";
//$qu="select * from call ";
//$res=mysql_query("select * from call where flag='C'");
$res=mysql_query($qu);
$row=mysql_num_rows($res);
$count=mysql_num_rows($res);
?>
while($rows=mysql_fetch_array($res)){
$sn++;
?>
echo $sn; ?> |
echo $rows['staff_name'] ;?> |
echo $rows['qulification']; ?> |
echo $rows['designation']; ?> |
};
?>
|
|