header('Content-Type: text/html; charset=tis-620');
include('../db_config.php');
$sql="select * from sk1_sch where scgrp != 'prv' order by sampur";
$result=mysql_query($sql);
echo "
รายชื่อผู้เข้าประชุมปฏิบัติการซ่อมบำรุงอุปกรณ์การศึกษาทางไกล วันที่ 18 ก.ย. 2562
กลับ
ที่ |
โรงเรียน |
ชื่อ |
";
$rw=1; $nf=0;
while ($db=mysql_fetch_array($result)) {
if (empty($db[book61])) {
$col='#ffe1e1';
$txt="-";
} else {
$col='#e4fede';
$txt="";
$nf++;
}
echo "
$rw |
$db[sname] |
$db[dltv] |
";
$rw++;
}
echo "
รวม | $nf |
กลับ";
?>