จะทำยังไงให้เวลาคลิกไปที่อีกเพจหนึ่งแล้ว แสดงข้อมูลรายละเอียดที่เราคลิกไป
ต้องการรายละเอียดเพิ่มครับ
Date :
2012-05-17 15:30:06
By :
compeng
เป็นโค้ดของเพจที่2 ที่เวลาคลิกมาแล้วจะโชวข้อมูลน้ขึ้นมา แต่ตอนนี้ ทำได้แค่โชวเพียงเท่าที่ select แล้วจะต้องใช้คำสั่งอ่ะไรเพื่อที่จะให้คลิกอะไรก็ได้ข้อมูลนั้นมา ตอนนี้ใช้ Code (PHP)
$sql = "Select type_code,date_start,date_end,status_2,(case when b.status_2='0' then 1 else 0 end) As status_0,(case when b.status_2='1' then 1 else 0 end) As status_1,(case when b.status_2='2' then 1 else 0 end) As status_2,sender_by,operation_by From complaint_operation a left outer join complaint_solve b ON a.fiscal_year = b.fiscal_year and a.complaint_no = b.complaint_no where left(a.date_start,6)<='255501' and b.operation_by = '00ต'";
$result=query($sql);
แบบนี้ แล้วมันก็แสดงเฉพาะ 00ต คือหน้าแรกมี operatiom_by เยอะมากต้องการให้มันคลิกแล้วแสดงข้อมูลของตัวมันเอง เราต้อง $_get หรือ$_post อะงี้ไหม
Code (PHP)
$HeaderTableBG = "#a7dbd8";
$HeaderTableBorder = "#999999";
$HeaderTableStyle = "font-weight:bold;height:20;";
$HeaderTableStyle1 = "font-weight:bold";
$AvgColumnBG = "#EAEAEA";
$SummaryTableBG = "#DCF1F0";
$ColumnWidth = "65";
//--------ใส่sql-----------//
/*Select type_code,date_start,date_end,status_2,sender_by,operation_by
From complaint_operation a left outer join complaint_solve b
ON a.fiscal_year = b.fiscal_year and a.complaint_no = b.complaint_no and b.status_2 = '1'
where left(a.date_start,6)<='255501' and b.operation_by = '00ต'*/
$sql = "Select type_code,date_start,date_end,status_2,(case when b.status_2='0' then 1 else 0 end) As status_0,(case when b.status_2='1' then 1 else 0 end) As status_1,(case when b.status_2='2' then 1 else 0 end) As status_2,sender_by,operation_by From complaint_operation a left outer join complaint_solve b ON a.fiscal_year = b.fiscal_year and a.complaint_no = b.complaint_no where left(a.date_start,6)<='255501' and b.operation_by = '00ต'";
$result=query($sql);
?>
<HTML>
<HEAD>
<TITLE>รายละเอียดเรื่องร้องทุกข์ส่งให้ส่วนงานที่เกี่ยวข้องดำเนินการ (แยกตามส่วนงานที่รับเรื่อง) ณ สิ้นเดือน</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<style type="text/css">
<!--
table.report {
border:1px solid #999999;
border-collapse: collapse;
}
.font1 {
FONT-SIZE: 8pt;
FONT-WEIGHT: normal;
FONT-FAMILY: "Tahoma";
}
.font2 {
FONT-SIZE: 9pt;
FONT-WEIGHT: normal;
FONT-FAMILY: "Tahoma";
}
.textbox {
border: 2px double #CCCCCC;
}
-->
</style>
</HEAD>
<BODY>
<TR valign="top">
<TD align="center" width="38%">
<table border='1' cellpadding='0' cellspacing='0' width='100%' class='report font1'>
<tr bgcolor='<?=$HeaderTableBG?>' bordercolor='<?=$HeaderTableBorder?>' align='center' style='<?=$HeaderTableStyle?>'>
<tr>
<th width="<?=$ColumnWidth?>">ประเภทเรื่อง</th>
<th width="<?=$ColumnWidth?>">สถานะ</th>
<th width="<?=$ColumnWidth?>">สถานะ</th>
<th width="<?=$ColumnWidth?>">สถานะ</th>
<th width="<?=$ColumnWidth?>">sender_by</th>
<th width="<?=$ColumnWidth?>">opearation_by</th>
<th width="<?=$ColumnWidth?>">วันที่รับเรื่อง</th>
<th width="<?=$ColumnWidth?>">วันที่ยุติเรื่อง</th>
</tr>
<?php
WHILE($row = fetch_array($result)){
echo"<tr>".
"<td align='center'>".$row['type_code']."</td>".
"<td align='center'>".$row['status_0'] . "</td>".
"<td align='center'>".$row['status_1'] . "</td>".
"<td align='center'>".$row['status_2'] . "</td>".
"<td align='center'>".$row['sender_by'] . "</td>".
"<td align='center'>".$row['operation_by'] . "</td>".
"<td align='center'>".$row['date_start']."</td>".
"<td align='center'>".$row['date_end'] . "</td>".
"</tr>";
}
?>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>
<? close(); ?>
Date :
2012-05-17 15:46:58
By :
newcuppoom
Load balance : Server 04