|
|
|
ผมอยากเมื่อค้นหาแล้วให้แบ่งหน้าข้อมูลที่ค้นหาด้วยนะครับผมลองให้โค้ดที่่สอนทำแล้วดูแล้วยังไม่ออกเลยครับ กรุณาช่วยด้วยครับผม |
|
|
|
|
|
|
|
อ้างอิงจากกระทู้นี้ https://www.thaicreate.com/php/php-mysql-search-record-paging.html
ผมลองก็อบโค็ดไปใช้แล้วมันยังไม่ออกเลยนะครับ มันขึ้น Error ตามรูปที่แนบมานะครับ
ใครพอจะรู้ก็ช่วยด้วยนะครับผมขอบคุณล่วงหน้าครับ
นี้ครับโค้ด
Code (PHP)
<?php
ob_start();
session_start();
require_once("connect.php");
/*$login=$_SESSION['login'];
if($login<>"OK")//ป้องกันการเข้าเมนูโดนไม่่ผ่านหน้าlogin
{
?> <script language="javascript"> window.alert("คุณไม่สามารถใช่ส่วนนี้ได้ กรุณาล๊อกอินก่อน"); </script> <?php
header("location:login.php");
}*/
//echo"เชื่อมต่อสำเร็จ";
//แบ่งหน้า
?>
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script type="text/javascript">
<!--
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script>
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body onLoad="MM_preloadImages('Button/Print-over.png')">
<div align="center"style="font-size:24px;"></div>
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="599" border="1" align="center">
<tr>
<th>Keyword
<input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET['txtKeyword'];?>">
<input type="submit" value="Search"></th>
</tr>
</table>
</form>
<?php if($_GET['txtKeyword'] != "")
{
// Search By Name or Email
$strSQL = "select * from tbllogfile where (logfile_Name LIKE '".$_GET['txtKeyword']."%')";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 40; // Per Page
$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$strSQL .=" order by Log_Datetime Desc LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<table width="400" border=2 align="center">
<th width="41" align=center>ลำดับ</th>
<th width="97" align=center>ชื่อ</th>
<th width="158" align=center>การกระทำ</th>
<th width="74" align=center>เวลา</th>
</tr>
<?php
$n=1;
while($log=mysql_fetch_array($objQuery))
{
$name=$log['Log_Name'];
$act=$log['Action'];
$datetime=$log['Log_Datetime'];
if(($n%2)==0)
{ $bg="white";}
else
{ $bg="#C1FFC1";}
echo "<tr bgcolor='$bg'>";
echo "<td align=center>$i</td>";
echo "<td align=center>$name</td>";
echo "<td align=center>$act</td>";
echo "<td align=center>$datetime</td>";
echo "</tr>";
$n++;
}
?>
</table>
<br>
Total <?php= $Num_Rows;?> Record : <?php=$Num_Pages;?> Page :
<?php
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&txtKeyword=$_GET[txtKeyword]'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i&txtKeyword=$_GET[txtKeyword]'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&txtKeyword=$_GET[txtKeyword]'>Next>></a> ";
}
}
?>
</body>
</html>
Tag : PHP, MySQL, HTML/CSS
|
ประวัติการแก้ไข 2011-09-16 22:33:51 2011-09-16 22:35:03
|
|
|
|
|
Date :
2011-09-16 22:32:55 |
By :
nutzaaclub |
View :
817 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
if (isset($_POST['txtKeyword'])) {
}
|
|
|
|
|
Date :
2011-09-17 08:15:07 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|