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 "
สรุปการสำรวจจำนวนบุคลากรใน รร.ที่ไปลงทะเบียนเป็นจิตอาสาเฉพาะกิจ
งานพระราชพิธีถวายพระเพลิงพระบรมศพ ถึงวันที่ 30 ก.ย.60
กลับ
ที่ |
โรงเรียน |
ครู |
บุคลากรทางการศึกษา |
เจ้าหน้าที่ |
อื่นๆ |
รวม |
";
$rw=1;
while ($db=mysql_fetch_array($result)) {
$tjit=$db[jit_kru]+$db[jit_per]+$db[jit_off]+$db[jit_oth];
if ($db[jit_kru]<>'') { $col='#e6fee0'; } else { $col='#ffe6cc'; }
echo "
$rw |
$db[sname] |
$db[jit_kru] |
$db[jit_per] |
$db[jit_off] |
$db[jit_oth] |
$tjit |
";
$rw++;
$tkru+=$db[jit_kru];
$tper+=$db[jit_per];
$toff+=$db[jit_off];
$toth+=$db[jit_oth];
}
$tt=$tkru+$tper+$toff+$toth;
echo <<
รวม |
$tkru |
$tper |
$toff |
$toth |
$tt |
กลับ
TF;
?>