<?php
include "conn.inc.php"; //ฐานข้อมูล
$SQL="select *,'file01' as linkfile from process
where filename = '$file01'
union
select *,'file02' as linkfile from process
where filename = '$file02
union
select *,'file03' as linkfile from process
where filename = '$file03'";
$sqlquery=mysql_db_query($dbname,$SQL);
$num_rows = mysql_num_rows($sqlquery);
echo"Set work : ";
while($row=mysql_fetch_row($sqlquery))
{
echo $row[1];
}
mysql_close();
?>