|
|
|
สอบถาม ปัญหา เกี่ยวกับ การแบ่ง โดยมี form ค้นหา อยู้ด้วย แต่เมื่อค้นเสด กดหน้า กับไม่แสดงหน้าที่ค้นหา ลองเข้ามาดูโค้ดได้ ครับ ยาวหน่อย |
|
|
|
|
|
|
|
Code (PHP)
<? include "config.php";
//funtion แบ่งหน้า
function page_navi($page, $limit, $range, $count, $send=NULL, $current_style="navi_on", $other_style="navi_out", $target="_self"){
$output = "";
$total = ceil($count/$limit);
$navi_start = $page-$range;
$navi_end = $page+$range;
$send .= (!empty($send))? "&" : NULL;
if($navi_start <= 0) $navi_start = 1;
if($navi_end >= $total) $navi_end = $total;
if($page>1){
$navi_back = $page-1;
if($page > 2)
$output .= "<a href=\"?" . $send . "page=1\" target=\"" . $target . "\" class=\"" . $other_style . "\"><img src=\"images/b_firstpage.png\" width=\"16\" height=\"13\" title=\"หน้าแรกสุด\"/></a> ";
$output .= "<a href=\"?" . $send . "page=" . $navi_back . "\" target=\"" . $target . "\" class=\"" . $other_style . "\"><img src=\"images/b_prevpage.png\" width=\"8\" height=\"13\" title=\"ย้อนกลับ\"/></a> ";
}
for($i = $navi_start; $i <= $navi_end; $i++){
if($i == $page)
$output .= "<a href=\"?" . $send . "page=" . $i . "\" target=\"" . $target . "\" class=\"" . $current_style . "\"><strong><font color=\"" . $other_style . "\">$i</font></strong></a> ";
else
$output .= "<a href=\"?" . $send . "page=" . $i . "\" target=\"" . $target . "\" class=\"" . $other_style . "\">$i</a> ";
}
if($page < $total){
$navi_next = $page+1;
$output .= "<a href=\"?" . $send . "page=" . $navi_next . "\" target=\"" . $target . "\" class=\"" . $other_style . "\"><img src=\"images/b_nextpage.png\" width=\"8\" height=\"13\" title=\"หน้าถัดไป\"/></a> ";
if(($page+1) < $total)
$output .= "<a href=\"?" . $send . "page=" . $total . "\" target=\"" . $target . "\" class=\"" . $other_style . "\"><img src=\"images/b_lastpage.png\" width=\"16\" height=\"13\" boder=\"0\" title=\"หน้าสุดท้าย\"/></a> ";
}
if($navi_start>$navi_end)
$output .= "<a href=\"?" . $send . "page=" . $page . "\" target=\"" . $target . "\" class=\"" . $other_style . "\"><strong>$page</strong></a> ";
return $output;
}
โค้ดแสดงการแบ่ง และค้นหา
<?
include "config.php";
include "function.php";
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<?
//ค่าที่ได้รับมาจากการ Submit
$province = $_POST[province];
$amphur = $_POST[amphur];
$tumbon = $_POST[tumbon];
if ( !empty( $amphur ) )
{
//echo "<br /><br />ค่าที่ได้จากการ Submit คือ :<br /<br />จังหวัดที่เลือก : $province<br />อำเภอที่เลือก : $amphur<br />ตำบลที่เลือก : $tumbon<br /><br /><br />\n";
};
?>
<form action="showall.php?action=on" method="post" enctype="multipart/form-data" name="formadd" onsubmit="return checkdata();">
<?
echo '<span id="provinceDiv">';
echo "<label for=\"province\">จังหวัด :</label><select name=\"province\" id=\"province\" onchange=\"dochange('province')\">\n";
echo "<option value=\"$province\">--------------</option> \n" ;
echo "</select></span>\n";
echo '<span id="amphurDiv">';
echo "<label for=\"amphur\">อำเภอ : </label><select name=\"amphur\" id=\"amphur\" onchange=\"dochange('amphur')\">\n";
echo "<option value=\"$amphur\">--------------</option> \n" ;
echo "</select></span>\n";
echo '<span id="tumbonDiv">';
echo "<label for=\"tumbon\">ตำบล :</label><select name=\"tumbon\" id=\"tumbon\">\n"; //รายการสุดท้ายไม่ต้องมี event แล้ว
echo "<option value=\"$tumbon\">--------------</option> \n" ;
echo "</select></span>";
echo " ";
echo "<input type=\"submit\" value=\"ค้นหา\" name=\"submit\" class=\"btn\"/>\n";
echo "</form>\n";
?>
<script type="text/javascript">
//AJAX
function Inint_AJAX()
{
try
{
return new ActiveXObject( "Msxml2.XMLHTTP" );
}
catch ( e )
{
};
try
{
return new ActiveXObject( "Microsoft.XMLHTTP" );
}
catch ( e )
{
};
try
{
return new XMLHttpRequest();
}
catch ( e )
{
};
alert( "XMLHttpRequest not supported" );
return null;
};
function dochange( obj )
{
var req = Inint_AJAX();
var province = document.getElementById( 'province' ).value;
var tumbon = document.getElementById( 'tumbon' ).value;
if ( obj && obj.name == 'province' ) //เมื่อทำการเลือที่จังหวัดมา ให้เคลียร์ค่าอำเภอ
{
var amphur = "";
}
else //เลือกรายการอื่น
{
var amphur = document.getElementById( 'amphur' ).value;
};
var data = "province=" + province + "&hur=" + amphur + "&tumbon=" + tumbon;
req.onreadystatechange = function()
{
if ( req.readyState == 4 )
{
if ( req.status == 200 )
{
var datas = eval( '(' + req.responseText + ')' ); // JSON
document.getElementById( 'provinceDiv' ).innerHTML = datas[0].province;
document.getElementById( 'amphurDiv' ).innerHTML = datas[0].amphur;
document.getElementById( 'tumbonDiv' ).innerHTML = datas[0].tumbon;
};
};
};
req.open( "post" , "province.php" , true ); //สร้าง connection
req.setRequestHeader( "Content-Type", "application/x-www-form-urlencoded" ); // set Header
req.send( data ); //ส่งค่า
};
//โหลดครั้งแรก
window.onload = function()
{
dochange( '' );
};
</script>
<hr />
<?
if ( !empty( $amphur ) )
{
//code_prov($province);
//echo " อำเภอ";
//code_amp($amphur);
//echo "<br /><br />ค่าที่ได้จากการ Submit คือ :<br /<br />จังหวัดที่เลือก : $province<br />อำเภอที่เลือก : $amphur<br />ตำบลที่เลือก : $tumbon<br /><br /><br />\n";
};
?>
<!--////////////////////////////////////////////////////-->
<? $page = (isset($_GET['page']))? intval($_GET['page']) : 1;
$limit_end = 50;//จำนวนหน้าที่แสดง
$limit_start = ($page-1)*$limit_end;
//////////////////////////////
$prov= code_prov("$province");
$amp= code_amp("$amphur");
$tumb= code_tumbon("$tumbon");
//////////////////////////////
$send = "prov= $prov";/// ลองส่งค่าตรงนี้แล้วนะ ค่ามา แต่เมื่อกด แล้วไม่ได้ และก็แสดงหน้า2ของค่าเดิม
if(isset($_GET["id"]) and $_GET["id"] != ""){
$send = "id=" . $_GET["id"];
$condition= "id='" . $_GET["id"] . "'";
}
if($_GET['action']=="on"){
if($amphur=="0"){
$sql = "SELECT * FROM data WHERE a1='$prov' order by id ASC ";
//echo $sql;
$query_id = mysql_query($sql . " LIMIT " . $limit_start. "," . $limit_end);
$count = mysql_num_rows($query_id);
$total = mysql_num_rows(mysql_query($sql));
// echo "\n<div id=\"page\" style=\"float:left;\">หน้า : " . page_navi($page, $limit_end, 10, $total, $send) . " </div>";
// echo"". $limit_start." สุด".$limit_end;
// echo "<br/>";
// echo "<br/>";
}elseif($tumbon=="0"){
$sql = "SELECT * FROM data WHERE a1='$prov' AND a3='$amp' order by id ASC ";
//echo $sql;
$query_id = mysql_query($sql . " LIMIT " . $limit_start. "," . $limit_end);
$count = mysql_num_rows($query_id);
$total = mysql_num_rows(mysql_query($sql));
}else{
$sql = "SELECT * FROM data WHERE a1='$prov' AND a3='$amp' AND a4='$tumb' order by id ASC ";
//echo $sql;
$query_id = mysql_query($sql . " LIMIT " . $limit_start. "," . $limit_end);
$count = mysql_num_rows($query_id);
$total = mysql_num_rows(mysql_query($sql));
//echo"". $limit_start." สุด".$limit_end;
}
}else{
$sql = "select * from data order by id ASC";
$query_id = mysql_query($sql . " LIMIT " . $limit_start. "," . $limit_end);
$count = mysql_num_rows($query_id);
$total = mysql_num_rows(mysql_query($sql));
echo "\n<div id=\"page\" style=\"float:left;\">หน้า : " . page_navi($page, $limit_end, 4, $total, $send) . " </div>";
echo "<br/>";
echo "<br/>";
}
if($total!="0"){
?>
<table width="435%" border="1" align="center" cellpadding="2" cellspacing="0" id="showdata">
<tr>
<th>ลำดับ</th>
<th>จังหวัด</th>
<th>จำนวน</th>
<th>อำเภอ</th>
<th>ตำบล</th>
<th>เล่มที่</th>
<th>หมายเลข Harddik ของ JPEG</th>
<th>JPEG อยู่ที่</th>
<th>หมายเลข Harddik ของ PDF</th>
<th>PDF อยู่ที่</th>
<th>ผู้ถ่ายภาพ</th>
<th>จำนวนที่ถ่ายเสร็จ</th>
<th>วันที่ถ่ายภาพ</th>
<th>วันที่ถ่ายเสร็จ</th>
<th>ผู้แปลง</th>
<th>จำนวนที่แปลงเสร็จ</th>
<th>วันที่รับแปลง</th>
<th>วันที่เสร็จการแปลง</th>
<th>ผู้ QC เบื้องต้น</th>
<th>วันที่ QC เบื้องต้น</th>
<th>ผู้ซ่อมการถ่าย</th>
<th>จำนวนซ่อมการถ่าย</th>
<th>สาเหตุการซ่อม</th>
<th>วันที่ซ่อมถ่าย</th>
<th>ผู้ซ่อมการแปลง</th>
<th>จำนวนซ่อมการแปลง</th>
<th>สาเหตุซ่อมการแปลง</th>
<th>วันที่ซ่อมการแปลง</th>
<th>ผู้ QC1</th>
<th>ผ่าน QC1</th>
<th>ไม่ผ่าน QC1</th>
<th>สาเหตุไม่ผ่าน</th>
<th>วันที่ QC1</th>
<th>ผู้ซ่อมงาน2</th>
<th>จำนวนที่ซ่อม2</th>
<th>วันที่ซ่อม2</th>
<th>ผู้ QC2</th>
<th>ผ่าน QC2</th>
<th>วันที่ QC2</th>
<th>ส่ง สมท.</th>
<th>วันที่ส่ง สมท.</th>
<th>ดูข้อมูล</th>
<th>แก้ไข</th>
<th>ลบ</th>
</tr>
<? for($i=0;$i<$count;$i++) {
?>
<tr>
<td ><? echo mysql_result($query_id,$i,'id');?></td>
<td><? echo mysql_result($query_id,$i,'a1');?></td>
<td><? echo mysql_result($query_id,$i,'a2');?></td>
<td><? echo mysql_result($query_id,$i,'a3');?></td>
<td><? echo mysql_result($query_id,$i,'a4');?></td>
<td><? echo mysql_result($query_id,$i,'a5');?></td>
<td><? echo mysql_result($query_id,$i,'a6');?></td>
<td><? echo mysql_result($query_id,$i,'a7');?></td>
<td><? echo mysql_result($query_id,$i,'a8');?></td>
<td><? echo mysql_result($query_id,$i,'a9');?></td>
<td><? echo mysql_result($query_id,$i,'a10');?></td>
<td><? echo mysql_result($query_id,$i,'a11');?></td>
<td><? echo mysql_result($query_id,$i,'a12');?></td>
<td><? echo mysql_result($query_id,$i,'a13');?></td>
<td><? echo mysql_result($query_id,$i,'a14');?></td>
<td><? echo mysql_result($query_id,$i,'a15');?></td>
<td><? echo mysql_result($query_id,$i,'a16');?></td>
<td><? echo mysql_result($query_id,$i,'a17');?></td>
<td><? echo mysql_result($query_id,$i,'a18');?></td>
<td><? echo mysql_result($query_id,$i,'a19');?></td>
<td><? echo mysql_result($query_id,$i,'a20');?></td>
<td><? echo mysql_result($query_id,$i,'a21');?></td>
<td><? echo mysql_result($query_id,$i,'a22');?></td>
<td><? echo mysql_result($query_id,$i,'a23');?></td>
<td><? echo mysql_result($query_id,$i,'a24');?></td>
<td><? echo mysql_result($query_id,$i,'a25');?></td>
<td><? echo mysql_result($query_id,$i,'a26');?></td>
<td><? echo mysql_result($query_id,$i,'a27');?></td>
<td><? echo mysql_result($query_id,$i,'a28');?></td>
<td><? echo mysql_result($query_id,$i,'a29');?></td>
<td><? echo mysql_result($query_id,$i,'a30');?></td>
<td><? echo mysql_result($query_id,$i,'a31');?></td>
<td><? echo mysql_result($query_id,$i,'a32');?></td>
<td><? echo mysql_result($query_id,$i,'a33');?></td>
<td><? echo mysql_result($query_id,$i,'a34');?></td>
<td><? echo mysql_result($query_id,$i,'a35');?></td>
<td><? echo mysql_result($query_id,$i,'a36');?></td>
<td><? echo mysql_result($query_id,$i,'a37');?></td>
<td><? echo mysql_result($query_id,$i,'a38');?></td>
<td><? echo mysql_result($query_id,$i,'a39');?></td>
<td><? echo mysql_result($query_id,$i,'a40');?></td>
<td><a href="showdetail.php?id=<? echo mysql_result($query_id,$i,'id');?>">ดูข้อมูล</a></td>
<td><a href="formedit.php?id=<? echo mysql_result($query_id,$i,'id');?>">แก้ไข</a></td>
<td><a href="JavaScript:if(confirm('ต้องการลบใช่หรือไม่')==true){window.location='showall.php?action=del&&id=<? echo mysql_result($query_id,$i,'id');?>';}">ลบ</a> </td>
</tr>
<?
}
?>
</table>
<?
}else{
?>
<table width="100%" border="1" align="center" cellpadding="2" cellspacing="0" id="showdata">
<tr>
<th colspan="40">ไม่พบข้อมูล</th>
</tr>
</table>
<?
}
?>
</body>
</html>
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2011-05-06 08:54:21
|
|
|
|
|
Date :
2011-05-06 08:52:47 |
By :
ckcr |
View :
797 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งง โค้ด อะไร ถามเลยครับ
|
|
|
|
|
Date :
2011-05-06 09:52:21 |
By :
ckcr |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เงียบ สนิท...
|
|
|
|
|
Date :
2011-05-06 13:40:21 |
By :
ckcr |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ่านดูดีๆ ครับวิธีใช้ผมก็เขียนไว้ แค่อ่านให้เข้าใจแล้วปรับแต่งให้เข้ากับโค๊ดคุณ เช่น
Code (PHP)
if(isset($_GET["id"]) and $_GET["id"] != ""){
$send = "id=" . $_GET["id"];
$condition= "id='" . $_GET["id"] . "'";
}
อันนี้คุณเข้าใจไหมว่าผมเขียนไว้ทำไม ไว้ใช้ทำอะไร ไม่ใช่ว่าเอาโค๊ดผมไปแปะแล้วจะใช้ได้เลยนะครับผม
|
|
|
|
|
Date :
2011-05-06 22:58:26 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรงนั้น ไม่รู้ ช่วยอธิบาย หน่อยได้ ไหม ครับ งง ตรงนี้ แหละ ครับ
รับ id จากไหน ส่ง ไปไหน ไล่ดูแล้ว งงๆ ครับ
|
ประวัติการแก้ไข 2011-05-07 09:50:48
|
|
|
|
Date :
2011-05-07 09:17:07 |
By :
ckcr |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไล่แล้ว มางง ตรงนี้เลย Code (PHP)
if(isset($_GET["id"]) and $_GET["id"] != ""){
$send = "id=" . $_GET["id"];
$condition= "id='" . $_GET["id"] . "'";
}
|
|
|
|
|
Date :
2011-05-09 08:35:11 |
By :
ckcr |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|