header('Content-Type: text/html; charset=tis-620');
include('../db_config.php');
//$sql="select * from sk1_sch where scgrp='$sg' ";
$sql="select * from sk1_sch where scgrp='$sg' order by sname";
$result=mysql_query($sql);
echo "
ที่ |
โรงเรียน |
แจ้ง NetBook |
";
$rw=1;
while ($db=mysql_fetch_array($result)) {
if ($db[nbook]==1 ) {
$ast="ใช้งานอยู่";
} elseif ($db[nbook] ==2) {
$ast='ไม่ได้ใช้';
} elseif ($db[nbook] =='0') {
$ast='* ไม่มี';
} elseif ($db[nbook] =='' ) {
$ast='-';
}
echo "
$rw |
$db[sname] |
$ast |
";
$rw++; $tstd+=$db[ipst];
}
$tstd=number_format($tstd,0,'.',',');
echo "
รวม |
$tstd |
";
?>