header('Content-Type: text/html; charset=tis-620');
include('../db_config.php');
$sql="select * from ktr60 where ksmis='$smis' ";
$result=mysql_query($sql);
echo "
ที่ |
ชื่อ-สกุล |
ไปอบรม |
รออบรม |
";
$rw=1;
while ($db=mysql_fetch_array($result)) {
if ($db[kreg] == '1' ) {
$ast='อบรมแล้ว';
} else {
$ast='-';
}
echo "
$rw |
$db[kname] |
$ast |
$db[kday] $db[kmnt] |
";
$rw++; $tstd+=$db[updata];
}
$tstd=number_format($tstd,0,'.',',');
echo "
รวม |
|
|
";
?>