| Server IP : 104.21.73.108 / Your IP : 216.73.216.59 Web Server : Apache/2 System : Linux cat167-197.static.lnwhostname.com 5.10.0-20-amd64 #1 SMP Debian 5.10.158-2 (2022-12-13) x86_64 User : paphayomho ( 1042) PHP Version : 5.6.40 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/paphayomho/domains/paphayomhospital.go.th/private_html/newsjob/multi_edit/ |
Upload File : |
<?php
include('header.php');
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<body>
<div class="container">
<br>
<br>
<a href="../home.php" class="btn btn-inverse">กลับหน้าหลัก</a>
<form action="edit.php" method="post">
<table cellpadding="0" cellspacing="0" border="0" class="table table-striped table-bordered" id="example">
<div class="alert alert-info">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong><i class="icon-user icon-large"></i> แก้ไขข้อมูลข่าวประกาศรับสมัครงาน</strong>
</div>
<thead>
<tr>
<th></th>
<th>หัวข้อข่าว</th>
<th>รายละเอียดข่าว</th>
<th>วันที่ประกาศ</th>
<th>ที่จัดเก็บไพล์</th>
</tr>
</thead>
<tbody>
<?php
$query=mysql_query("select * from up_files1 ORDER BY id DESC")or die(mysql_error());
while($row=mysql_fetch_array($query)){
$id=$row['id'];
?>
<tr>
<td>
<input name="selector[]" type="checkbox" value="<?php echo $id; ?>">
</td>
<td><?php echo $row['fname']; ?></td>
<td><?php echo $row['fdesc']; ?></td>
<td><?php echo $row['fdatein']; ?></td>
<td><?php echo $row['floc']; ?></td>
</tr>
<?php } ?>
</tbody>
</table>
<button class="btn btn-success" name="submit_mult" type="submit">
แก้ไขข่าวประกาศ
</button>
</form>
</div>
</body>
</html>