header('Content-Type: text/html; charset=tis-620');
include('../db_config.php');
$sql="select * from sk1_e60 a,sk1_sch b where a.smis=b.smis and scgrp='$sg' ";
$result=mysql_query($sql);
echo "
ที่ |
โรงเรียน |
รายงานข้อมูล |
";
$rw=1;
while ($db=mysql_fetch_array($result)) {
if ($db[p1f]+$db[p1g]+$db[p1w]>0) { $ast='ส่งแล้ว'; }
else { $ast='-'; }
echo "
$rw |
$db[sname] |
$ast |
";
$rw++; $tstd+=$allstd;
}
$tstd=number_format($tstd,0,'.',',');
echo "
รวม |
$tstd |
";
?>