|
|
|
ปัญหาการเขียนโค้ดแบ่งหน้า เริ่มการใช้งานโดยการเลือกบทเรียน พอเลือกบทเรียนก็จะมีเนื้อออกมาค่ะ |
|
|
|
|
|
|
|
ต้องส่ง $lesson_id ไปด้วยครับ
$lesson_id = $_GET["lesson_id"];
$row=mysql_query("SELECT COUNT(*) FROM lesson_detail ; ");
$num_rows=mysql_result($row, 0, 0);
$num_pages=ceil($num_rows/$page_size);
if($current_page!=1){
$prev_page=$current_page - 1;
echo "<a href=\"" . $_SERVER['PHP_SELF'] . "?";
echo "page=$prev_page&lesson_id=$lesson_id\">previous</a>";
}
echo " Page: $current_page of .$num_pages ";
if($current_page< $num_pages){
$next_page=$current_page+1;
echo "<a href=\"" . $_SERVER['PHP_SELF'] . "?";
echo "page=$next_page&lesson_id=$lesson_id\">next</a>";
}
|
|
|
|
|
Date :
2009-09-20 15:52:53 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากกกกกกกกกค่ะ T_T
จะรีบแก้โค้ดเลยค่ะ
|
|
|
|
|
Date :
2009-09-20 16:00:19 |
By :
phinyaphat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|