|
|
|
ด่วนๆ ช่วยดูโค้ดให้หน่อยแบ่งหน้าให้หน่อยค่ะ มีปัญหาเยอะมาก จะแนบหน้าที่errorไปให้ดูนะค่ะ |
|
|
|
|
|
|
|
เป็นเว็บที่ไปเอามาดูเป็นตัวอย่าง และทำตามที่เค้าบอก แต่ก็ยังไม่ได้ พี่ช่วยดูให้หน่อยนะค่ะ เข้าไปดูเว็บตัวอย่างได้ที่
http://www.expert2you.com/view_article.php?cat_sel=50709&art_id=3212&page_no=2
เป็นerror เกิด เมื่อทำตามเว็บนี้ค่ะ ดูด้วยนะค่ะที่
http://i288.photobucket.com/albums/ll166/POUNDbucket/c1ts.jpg
Code (PHP)
ปอนด์เอาไว้ส่วนบนค่ะ เอาไว้ใน<head>
<?
$rowsPerPage = 10; // จำนวนที่จะให้แสดงใน 1 หน้า
$nowPage = $page;
if ($nowPage == '')
$nowPage = 1;
$limit = (($page - 1) * $limitPerPage) . ','.$limitPerPage;
?>
Code (PHP)
เป็นฟังชัน ให้เอาไว้ในหน้าเว็บ แต่ไม่รุ้จะแทรกตรงไหน แทรกไม่ถูก
<?php
function LinkPage($totalRows , $rowsPerPage , $nowPage , $link)
{
$totalPage = ceil($totalRows/$rowsPerPage);
if ($nowPage != 1)
echo ' <a href="'. $link .'&page='. ($nowPage - 1) . '"><</a> | ';
else
echo ' < | ';
for ($i=0;$i<$totalPage;$i++)
{
if ($i>0)
echo ' | ';
if (($i+1) != $nowPage)
echo '<a href="'. $link .'&page=' . ($i+1) . '">'. ($i+1) . '</a>';
else
echo ($i+1);
}
if ($nowPage != $totalPage)
echo ' | <a href="'. $link .'&page='. ($nowPage + 1) . '">'. '>' . '</a> ';
else
echo ' | > ';
}
?>
Code (PHP)
เป็นส่วนที่มีอยู่แล้ว และมีการเปลี่ยนแปลง เพิ่มเข้าไปค่ะ
โค้ดก่อนที่จะเปลี่ยนแปลง นะค่ะ
<?php
include "connect_odbc.php";
$query = "SELECT * FROM Room WHERE room_id LIKE '%".$_GET["txtkeyword"]."%' or room_floor LIKE '%".$_GET["txtkeyword"]."%'";
$stmt = oci_parse($conn, $query);
oci_execute($stmt);
//$i = 1;
while ($row = oci_fetch_array ($stmt, OCI_NUM)) {
$room_id= $row[0];
$room_floor= $row[1];
$room_type= $row[2];
$room_cost= $row[3];
$room_sit= $row[4];
?>
ส่วนนี้ที่เปลี่ยนแล้ว
<?php
include "connect_odbc.php";
$query = "SELECT OCI_CALC_FOUND_ROWS * FROM Room WHERE room_id LIKE '%".$_GET["txtkeyword"]."%' or room_floor LIKE '%".$_GET["txtkeyword"]."%'";
$sql.='LIMIT'.$limit;
/*include "connect_odbc.php";
$stmt = oci_parse($conn, "SELECT * FROM furniture ");
oci_execute($stmt);
$i = 1;
while ($row = oci_fetch_array ($stmt, OCI_NUM)) {
*/
$stmt = oci_parse($conn, $query);
oci_execute($stmt);
$c_res = oci_query('SELECT FOUND_ROWS()');
$row = oci_fetch_array($c_res);
$totalRows = $row[0];
//$i = 1;
while ($row = oci_fetch_array ($stmt, OCI_NUM)) {
$room_id= $row[0];
$room_floor= $row[1];
$room_type= $row[2];
$room_cost= $row[3];
$room_sit= $row[4];
/*ให้ใส่ในส่วนสร้างตัวแปร link คือถ้ามีการกดลิ่งไปหน้าที่ 2-3 จะให้ส่งค่าอะไรไป
ด้วยบ้าง เช่น*
/
$link = 'show.php?cat=game&order=byname&stattus=1';
(ไม่ต้องระบุ page เดี๋ยว function จะใส่ให้เอง)
?>
Code (PHP)
ใส่คำสั่ง LinkPage ไว้ในบริเวณที่ต้องการให้แสดงตัวแบ่งหน้า
<?php
LinkPage($totalRows , $rowsPerPage , $nowPage , $link);
?>
Code (PHP)
Code
Tag : - - - -
|
|
|
|
|
|
Date :
2009-03-26 15:01:41 |
By :
มึนจัง |
View :
1086 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ปล. Oracle กะ MySQL ใช้ sql ไม่เหมือนกันนะครับ อย่าไปเชื่อ เว็บเยอะมาก
|
|
|
|
|
Date :
2009-03-26 16:26:21 |
By :
pjgunner |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call undefined function oci_quert
มันบอกว่า ฟังก์ชั่นนี้ไม่มีให้ใช้ PHP เวอร์ชั่นไรอ่ะเนี้ย..
|
|
|
|
|
Date :
2009-03-27 11:03:36 |
By :
noomna19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|