|
|
|
ใครพอที่จะช่วยทำ ปุ่ม ค้นหา Search ได้บ้างครับหรือแนะนำก็ได้ครับ ผมวางโค้ดไว้แล้ว แล้วก็ทำ สถานะงาน จากวันที่ A ถึงวัน ที่ B อะครับช่วยทีครับ T^T |
|
|
|
|
|
|
|
Code (PHP)
<?php
include('config.inc.php');
include('function.php');
?>
<html>
<head>
<link href="//maxcdn.bootstrapcdn.com/bootswatch/3.3.2/cerulean/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" media="all" type="text/css" href="jquery-ui.css" />
<link rel="stylesheet" media="all" type="text/css" href="jquery-ui-timepicker-addon.css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript">
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
</script>
<style type="text/css">
<!--
body,td,th {
font-family: ms Sans Serif;
font-size: 16px;
}
a {
font-family: ms Sans Serif;
font-size: 16px;
}
h1,h2,h3,h4,h5,h6 {
font-family: ms Sans Serif;
}
h1 {
font-size: 16px;
}
-->
</style></head>
<body>
<center>
<table width="1024" border="0">
<tr>
<table width="100%" border="1" cellpadding="3" cellspacing="0">
<tr>
<th width="198"> <div align="center">ที่ </div></th>
<th width="98"> <div align="center">งาน </div></th>
<th width="150"> <div align="center">รายละเอียด </div></th>
<th width="198"> <div align="center">สถานะ
<form name="form" id="form">
<select name="jumpMenu" id="jumpMenu" onChange="MM_jumpMenu('parent',this,0)">
<option value="jobtodetail.php">-เลือกสถานะ-</option>
<option value="jobtodetail.php">แสดงสถานะทั้งหมด</option>
<option value="jobtodetail_start.php?id=1">รอจ่ายงาน</option>
<option value="jobtodetail_start.php?id=2">เริ่มงาน</option>
<option value="jobtodetail_start.php?id=3">ตรวจสอบ</option>
<option value="jobtodetail_start.php?id=4">เสร็จสิ้น</option>
</select>
</form>
</div></th>
<th width="150"> <div align="center">วันเริ่ม </div></th>
<th width="298"> <div align="center">กำหนดเสร็จ</div></th>
<th width="158"> <div align="center">ปรับสถานะ</div></th>
<th width="158"> <div align="center">รายละเอียด </div></th>
<th width="158">ปริ้น</th>
<th width="158">ลบข้อมูล</th>
<th width="158">แก้ไขข้อมูล</th>
</tr>
<?
$sql = "select * from job,status where status=s_id ORDER BY id DESC";
$qry = mysql_query($sql);
$a=0;
while($rs = mysql_fetch_object($qry)){
$id = $rs -> id;
$subject = $rs -> subject;
$detail = $rs -> detail;
$status = $rs -> status;
$s_id = $rs -> s_id;
$s_name = $rs -> s_name;
$starts = $rs -> starts;
$limits = $rs -> limits;
$remark = $rs -> remark;
$a++;
?>
<tr>
<th><label for="select">
<?=$a?>
</label></th>
<th><?=$subject?> </th>
<th><?=$detail?></th>
<th><?=$s_name?></th>
<th><?=$starts?></th>
<th><?=$limits?></th>
<th>
<form action="jobdetail_save.php" method="post" enctype="multipart/form-data" name="form2" target="xData">
<input name="id" type="hidden" id="id" value="<?=$id; ?>">
<input name="id1" type="hidden" id="id1" value="<?=$status; ?>">
<select name="status1">
<option value="">เลือกปรับสถานะ</option>
<?
$SQL = "select distinct s_id,s_name from status order by s_id";
$QRY = mysql_db_query($dbname, $SQL);
while($RS = mysql_fetch_object($QRY)){
$s_name = $RS -> s_name;
$s_id = $RS -> s_id;
if($s_name!=$sc){
echo "<option value=\"".$s_id."\">".$s_name." </option>";
}
$sc = $s_name;
}
?>
</select>
<input type="submit" name="button2" id="button2" value="บันทึก">
</form></th>
<th><a href="statusjob.php?id=<?=$id?>"><input type="submit" name="button3" id="button3" value="คลิ๊ก">
</a></th>
<th><a href="print_data.php?id=<?=$id?>"><input type="submit" name="button3" id="button3" value="ปริ้น"></a></th>
<td align="center"><a href><input type="submit" name="button3" id="button3" value="ลบข้อมูล" onClick="if(confirm('ลบข้อมูลหรือไม่')) window.open('deletejobtodetail.php?act=delete&id=<?=$id?>','xData','');"/></a>
<td align="center"><a href="jobdetail_edit.php?id=<?=$id?>"><input type="submit" name="button4" id="button4" value="แก้ไข"></a></td>
</tr>
<?php
}
?>
</table>
<a href="statusjob.php?id=<?=$id?>">
<label></label>
</a>
<tr>
<tr>
<tr>
<tr>
<tr>
<tr>
</body>
</html>
</body>
</html>
<iframe name="xData" style="display:none" src="about:blank"></iframe>
Tag : PHP
|
ประวัติการแก้ไข 2015-03-31 12:29:23 2015-03-31 13:47:10 2015-03-31 13:47:16
|
|
|
|
|
Date :
2015-03-31 12:26:36 |
By :
tumzcbr150 |
View :
713 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|