|
|
|
ขอคำแนะนำครับ ถ้าต้องการส่งข้อมูล( search)จากหน้าแสดงข้อมูล ไปยังอีกหน้าเพื่อให้ search เหมือนกัน ต้องทำอย่างไรครับ |
|
|
|
|
|
|
|
post หรือ get ธรรมดาที่แหล่ะครับ
มีกี่เงื่อนไขก็ && เข้าไปให้หมด
|
|
|
|
|
Date :
2016-07-14 14:03:45 |
By :
compiak |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้คุณกำหนด
ค้นหาแบบ realtime ไม่มีปุ่ม action ในการทำงาน
จริงๆ มันผิดหลักสำหรับการอยากส่งค่าไปอีกหน้า
เพื่อพิมพ์จากผลลัพธ์จากการค้นหา
จริงๆ ก็ทำได้
อ้างอิงจากไอดี จาก textbox แล้วก็ select เพื่อนำค่าที่ได้จากการทำงาน
มาเก็บไว้ บรรยายไม่ถูก 5555
รอคนที่ เก่งๆ javascript หรือ jquery มาช่วย
|
|
|
|
|
Date :
2016-07-14 15:11:05 |
By :
compiak |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สร้างปุ่มสำหรับพิมพ์รายงาน
html:
Code (PHP)
<button type="button" id="btn-report">พิมพ์รายงาน</button>
jQuery:
Code (JavaScript)
$("#btn-report").click(function(){
window.open('report.php?room_search=' + $("#room_search").val() + '&date_start=' + $("#datepicker").val() + '&date_stop' + $("#datepicker2").val());
});
ตัวแปรที่เหลืออีก 2 ตัวก็ทำต่อให้ครบ
php: หน้า Report
Code (PHP)
$room_search = $_GET['datepicker'];
ที่เหลือก็ไล่ไปให้ครบ
แล้วนำไปกำหนดเงื่อนไขใน Query
|
|
|
|
|
Date :
2016-07-14 17:13:41 |
By :
fossil31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอบความคิดเห็นที่ : 7 เขียนโดย : fossil31 เมื่อวันที่ 2016-07-15 08:12:27
ขอบคุณมากครับ คุณ fossil
ทำตามที่แนะนำแล้วครับ
เกิดปัญหาในหน้า ส่งข้อมูล คือ ถ้าใส่
Code (JavaScript)
<script type="text/javascript">
$(function(){
$("#datepicker").datepicker({ dateFormat: "yy-mm-dd" }).val('<?=$_POST['date_start'];?>')
});
$("#datepicker2").datepicker({ dateFormat: "yy-mm-dd" }).val('<?=$_POST['date_stop'];?>')
});
$("#btn-report").click(function(){
window.open('report.php?room_search=' + $("#room_search").val() + '&date_start=' + $("#datepicker").val() + '&date_stop' + $("#datepicker2").val());
});
</script>
<link href="jQueryui/jQuery-ui.css" rel="stylesheet" type="text/css"/>
</html>
</div></div>
datepicker เพื่อ search วันที่ (date start และ date stop ไม่ทำงานครับแต่ถ้าตัด }); ออก 1 อัน
<script type="text/javascript">
$(function(){
$("#datepicker").datepicker({ dateFormat: "yy-mm-dd" }).val('<?=$_POST['date_start'];?>')
$("#datepicker2").datepicker({ dateFormat: "yy-mm-dd" }).val('<?=$_POST['date_stop'];?>')
});
$("#btn-report").click(function(){
window.open('report.php?room_search=' + $("#room_search").val() + '&date_start=' + $("#datepicker").val() + '&date_stop' + $("#datepicker2").val());
});
</script>
<link href="jQueryui/jQuery-ui.css" rel="stylesheet" type="text/css"/>
</html>
</div></div>
ทำงานปกติ ครับ แต่กด ปุ่ม สั่งพิมพ์ หน้า report.php มาแต่เฉพาะ date start อย่างเดียวครับ room search / date stop ไม่แสดงครับ
|
|
|
|
|
Date :
2016-07-15 16:50:51 |
By :
panya@ots |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตกเครื่องหมาย =
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb" >
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
<title>Untitled Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript" src="jQueryui/jQuery.js"></script>
<script type="text/javascript" src="jQueryui/jQuery-ui.js"></script>
<script type="text/javascript">
// กำหนดสี billing Status
var search = 'Reservation';
$(document).ready(function () {
$("div:contains('"+search+"')").each(function () {
var regex = new RegExp(search,'gi');
$(this).html($(this).text().replace(regex, "<span class='red'>"+search+"</span>"));
});
});
</script>
<style type="text/css">
table#gridview {
clear:both;
}
table#gridview td {
padding:3px 0px;
}
table#gridview tr.head {
background:#B18904;
font-family:Arial, Helvetica, sans-serif;
text-align:center;
}
table#gridview tr.head td {
padding:3px 0px;
}
.bb2 {
font-size: 14px;
}
text-indent:0.5in;
#gridviewsss {
color: #FFF;
}
body {
background-color: #D3D3D3;
}
body,td,th {
color: #909090;
}
thead > tr{background:#;}
th, td{font-family:font-family:Arial, Helvetica, sans-serif}
thead th{color:#fff;font-size:14px;}
tr{height:44px;}
tbody > tr:nth-child(even) {background: #f3f3f3}
tbody > tr:nth-child(odd) {background: #fff}
tr.tr2 {background:#FFB7B7 !important}
tr.tr3 {background:#ABEBC6 !important}
tbody > tr:hover, tr.tr2:hover, tr.tr3:hover{background:#fff5e6 !important}
tbody td{font-size:13px;color:#000}
tbody td > div{text-align:center}
.text-center{text-align:center}
.hide{display: none;visibility: hidden;}
</style>
<style type="text/css">
@charset "utf-8";
.red{
color: red;
}
p.ex {
color:green;
background: none;
}
mark.red {
color:green;
background: none;
}
mark.blue {
color:gray;
background: none;
}
p.ex { color:green; background: none}
div.Canceled > p.ex { color:#333333 !important;}
</style>
<body>
<?php
include('config.php');?>
<form action="Report.php" method="post" name="adminForm" id="adminForm">
<table class="display" width="893" height="38" border="0" align="center" cellpadding="1" cellspacing="1" id="headtop">
<thead> <tr>
<td width="248" height="36">Date :
<input type="text" id= "datepicker" name="date_start" value="<?=$_POST['date_start'];?>"
size="10" style="width:150px;" onchange="document.adminForm.submit();" /></td>
<td width="638">Until: <span class="ff2">
<input type="text" id= "datepicker2" name="date_stop" value="<?=$_POST['date_stop'];?>"
size="10" style="width:150px;" onchange="document.adminForm.submit();" />
<button type="button" id="btn-report">พิมพ์รายงาน</button></td>
</tr>
</thead></table>
</form>
<br/>
<table class="display" width="1097" height="84" border="0" align="center" cellpadding="1" cellspacing="1" id="gridview">
<thead> <tr bgcolor="#000066">
<th width="98" height="39">Date</th>
<th width="98" height="39">Fleet</th>
<th width="85">Guest Name</th>
<th width="159">Destination</th>
<th width="65">Package</th>
<th class="total" width="71">Cash</th>
<th width="67">Credit</th>
<th width="67">Total Amount</th>
<th width="60">Remark</th>
<th width="178">schedule</th>
<th width="53">Status</th>
<th width="59">EDIT</th>
</tr>
</thead>
<?php
$sql_show = "SELECT customer.*,IF(charged='Cash',amount,'') AS price1,IF(charged='Package',amount,'') AS price2,IF(charged='Credit',amount,'') AS price3
FROM customer INNER JOIN charge_by_table ON customer.charged =charge_by_table.charge_by ";
$date_start = '';
$date_stop = '';
if($_POST['date_start']) {
$date_start = $_POST['date_start'];
$date_stop = $_POST['date_stop'];
$sql_show .= " where (reservation_date between '".$_POST['date_start']."' and '".$_POST['date_stop']."') ORDER BY reservation_date, fleet ASC";
}
$result_show = mysql_query($sql_show) or die(mysql_error());
$chk_date = false;
while($rs = mysql_fetch_array($result_show)) {
$reservation_date = $rs["reservation_date"];
$date = ($chk_date <> $reservation_date ? $reservation_date : '');
$id = $rs["id"];
$remark = $rs["remark"];
$edit_class = (trim($remark) == '') ? '' : ' hide';
$level = $rs['level'];
$level2 = $rs["level2"];
$tr_class = '';
if ($level == '2') {
$tr_class = ' class="tr2"';
}
else if ($level2 == '3') {
$tr_class = ' class="tr3"';
}
echo '<tr align="center"'.$tr_class.'>';
?>
<?php echo '<td height="42">'.$date.'</td>';?>
<td><?php echo $rs["fleet"];?></td>
<td><?php echo $rs["destination"];?></td>
<td><?php echo $rs["guest_name"];?></td>
<td bgcolor="#DCFEEB"><?php echo $rs["price2"];?></td>
<td class="total" bgcolor="#D2F7FC"><?php echo $rs["price1"];?></td>
<td bgcolor="#D1E2F5"><?php echo $rs["price3"];?></td>
<td bgcolor="#FED37D"><?php echo $rs["$total"];?></td>
<td ><?php echo $remark;?></td>
<td >
<?php
if($rs["schedule1"] == "" or $rs["schedule2"] == ""){ // ถ้า schedule1 หรือ schedule2 ไม่มีค่า
echo $rs["schedule1"].$rs["schedule2"];
}else{
echo $rs["schedule1"]."<hr>".$rs["schedule2"];
}
?>
</td>
<td ><strong><div class="<?php echo $rs["status"];?>"><p class="ex"><?php echo $rs["status"];?></p></div></strong></td>
<td bgcolor="#BDBAB5"><div class="text-center<?php echo $edit_class;?>"> <a href="edit.php?edit_id=<?php echo $id;?>">EDIT</a> </div></td>
<?php
echo '</tr>';
$chk_date = $reservation_date;
}
?>
</table>
<script type="text/javascript">
$(function(){
$("#datepicker").datepicker({ dateFormat: "yy-mm-dd" }).val('<?echo $date_start;?>');
$("#datepicker2").datepicker({ dateFormat: "yy-mm-dd" }).val('<?echo $date_stop;?>');
$("#btn-report").click(function() {
window.open('report.php?room_search=' + $('#room_search').val() + '&date_start=' + $('#datepicker').val() + '&date_stop=' + $('#datepicker2').val());
});
});
</script>
<link href="jQueryui/jQuery-ui.css" rel="stylesheet" type="text/css"/>
</body>
</html>
ลองกรอกข้อมูลให้ครบทุกช่อง
อย่าลืมว่า เราทดสอบส่งค่าไปแค่ 3 ค่า คือ room_search, date_start, date_stop
|
|
|
|
|
Date :
2016-07-15 17:05:34 |
By :
fossil31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2016-07-15 17:28:32 |
By :
fossil31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|