|
|
|
สอบถามเรื่องการตั้งค่าหน้า Paging ถ้าจะให้กำหนดเรคคอร์ดที่โชว์ใน Textbox... |
|
|
|
|
|
|
|
$Per_Page = $_POST['textbox'];
ทีนี้ถ้าอยากรู้ว่า จะมีกี่หน้า
เอา $Per_Page/จำนวน Record ทั้งหมด
ก็จะได้จำนวนหน้า
|
ประวัติการแก้ไข 2011-06-24 12:36:33
|
|
|
|
Date :
2011-06-24 12:17:42 |
By :
adaaugusta |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ แต่เอาประมาณว่าต้องการโชว์กี่เรคคอร์ดก็ใส่เลขไปในTextBox แล้วกดปุ่มadd มันจะก็จะรันจำนวนเรคคอร์ดที่เราใส่ไปต่อ 1 หน้า เช่นใส่เลข 15 ก็จะรันเรคคอร์ด 15 ต่อหน้า หรือ ใส่ 18 ก็จะรันโชว์เรคคอร์ด 18 ต่อหน้าครับ
|
|
|
|
|
Date :
2011-06-24 12:53:51 |
By :
MyZeus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอาไปประยุกต์ใช้ยังไงครับ
|
|
|
|
|
Date :
2011-06-24 13:53:29 |
By :
MyZeus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก่อนหน้านี้ก็บอกแล้วน่ะครับ ลองเอา Code ทั้งหมดมาดูครับ
|
|
|
|
|
Date :
2011-06-24 14:12:22 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<? echo (in_array($mem_type, array(1,2,3)))? '<a href="db_animal.php"><img src="insert.gif" alt="เพิ่ม" />
</a>' : ''';?> ค้นหา
<input name="txtKeyword" type="text" id="txtKeyword" size="50 "value="<?=$_GET["txtKeyword"];?>" />
<input type="submit" value="Search" />
</th>
</tr>
</table>
</center>
</form>
<?
if($_GET["txtKeyword"]!= "")
{
$strSQL = "SELECT * FROM animal WHERE (an_name LIKE '%".$_GET["txtKeyword"]."%' or an_tel1 LIKE '%".$_GET["txtKeyword"]."%'or an_rate LIKE '%".$_GET["txtKeyword"]."%')";
$objQuery = mssql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mssql_num_rows($objQuery);
$Per_Page = 15; // Per Page
$Page = $_GET["Page"];
//status_data=$_GET["RadioGroup1"];
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;
}
$Page_End = $Per_Page * $Page;
IF ($Page_End > $Num_Rows)
{
$Page_End = $Num_Rows;
}
?>
<center>
<table width="1000px" border="0" class="style" cellspacing="0">
<tr bgcolor="#0099FF" border="0">
<th align="center" bgcolor="blue"><span class="style2">ลำดับ</span></th>
<th align="center" bgcolor="blue"><span class="style2">ชื่อธุรกิจ</span></th>
<th align="center" bgcolor="blue"><span class="style2">โทรศัพท์</span></th>
<th align="center" bgcolor="blue"><span class="style2">รายละเอียดธุรกิจ</span></th>
<th align="center" bgcolor="blue"><span class="style2">ที่อยู่</span></th>
<th align="center" bgcolor="blue"><span class="style2">สถานที่ใกล้เคียง</span></th>
<th align="center" bgcolor="blue"><span class="style2">เว็บ</span></th>
<th align="center" bgcolor="blue"><span class="style2">ความนิยม</span></th>
<th colspan="3"align="center" bgcolor="blue"> </th>
</tr>
<?
$a=1;
$b=2;
$c=3;
$d=4;
$e=5;
for($i=$Page_Start;$i<$Page_End;$i++)
{
?>
<?if($bg == "white")
{
$bg = "#CCCCCC";
} else {
$bg = "white";
}
?>
<tr bgcolor="<?=$bg?>">
<td><div align="center" class="style1">
<?=$a;?>
</div></td>
<td><a onclick='window.open("popup_animal.php?an_1=<?=mssql_result($objQuery,$i,"an_id");?>",null, "height=800,width=800,status=yes,toolbar=0,menubar=0,scrollbars=1,resizable=1,status=1,location=0")' href="#">
<?=mssql_result($objQuery,$i,"an_name");?></a></td>
<td><div align="center">
<?=mssql_result($objQuery,$i,"an_tel1");?>
-
<?=mssql_result($objQuery,$i,"an_tel2");?>
</div></td>
<td><?=mssql_result($objQuery,$i,"an_detail");?></td>
<td><?=mssql_result($objQuery,$i,"an_amphur");?><?=mssql_result($objQuery,$i,"an_province");?></td>
<td><?=mssql_result($objQuery,$i,"an_town1");?><?=mssql_result($objQuery,$i,"an_town2");?><?=mssql_result($objQuery,$i,"an_town3");?><?=mssql_result($objQuery,$i,"an_town4");?></td>
<td><center><?=mssql_result($objQuery,$i,"an_web");?></center></td>
<td><center>
<?=mssql_result($objQuery,$i,"an_rate");?>
</center></td>
<td><center><input name="b<?=$b;?>" type="checkbox" id="c<?=$c;?>" value="d<?=$d;?>" onClick="if(this.checked){document.all.e<?=$e;?>.style.display='';}else{document.all.e<?=$e;?>.style.display='none';}"></center></td>
<td width="16" align="center"><a href="animal_edit.php?an_1=<?=mssql_result($objQuery,$i,"an_id");?>"><img src="edit.gif" alt="แก้ไข" /></a></td>
<td width="16" align="center"><a href="JavaScript:if(confirm('Confirm Delete?')==true){window.location='animal_delete.php?an_1=
<?=mssql_result($objQuery,$i,"an_id");?>';}"><img src="delete.gif" alt="ลบ" /></a></td>
</tr> </table></center>
<br />
มีทั้งหมด
<b><?= $Num_Rows;?></b>
เรคคอร์ด:
<b><?=$Num_Pages;?></b>
หน้า : อยู่หน้าที่
<?
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> ";
}
}
?>
<input type="button" name="show" value="แสดง"><input type="text" name="reccord" size="2">แถว //ตรงนี้ละครับ ที่ผมอยากใส่จำนวนโชว์แถว โดยไม่ต้องไปแแก้ในโค๊ดตรง $per_page
<?
mssql_close($objConnect);
?>
|
|
|
|
|
Date :
2011-06-24 14:31:00 |
By :
MyZeus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|