|
|
|
คือผมทำเว็บบอร์ดจาก Dreamweaver อะครับทำเรียบร้อยแล้วตั้ง Repeat Region ไว้ 10 เลยอยากหาวิธีที่พอครบ 10 หัวข้อแล้ว ให้มันขึ้น หน้า 1/2/3 อ่ะครับ |
|
|
|
|
|
|
|
คือผมทำเว็บบอร์ดจาก Dreamweaver อะครับทำเรียบร้อยแล้วตั้ง Repeat Region ไว้ 10 เลยอยากหาวิธีที่พอครบ 10 หัวข้อแล้ว ให้มันขึ้น หน้า 1/2/3 อ่ะครับต้องเขียนโค้ดอะไรเพิ่มหรอครับช่วยดูหน่อย
Code
<?php require_once('Connections/wbbd.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$maxRows_Recordset1 = 10;
$pageNum_Recordset1 = 0;
if (isset($_GET['pageNum_Recordset1'])) {
$pageNum_Recordset1 = $_GET['pageNum_Recordset1'];
}
$startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1;
mysql_select_db($database_webboard, $webboard);
$query_Recordset1 = "SELECT * FROM tb_board_quiz ORDER BY id_quiz DESC";
$query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
$Recordset1 = mysql_query($query_limit_Recordset1, $webboard) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
if (isset($_GET['totalRows_Recordset1'])) {
$totalRows_Recordset1 = $_GET['totalRows_Recordset1'];
} else {
$all_Recordset1 = mysql_query($query_Recordset1);
$totalRows_Recordset1 = mysql_num_rows($all_Recordset1);
}
$totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;
?>
<!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>Untitled Document</title>
</head>
<body><div align="center"><br />
<table width="800" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center" width="800">หัวข้อ/ชื่อเรื่อง</td>
</tr>
<?php do { ?>
<tr>
<td align="center"><hr width="65%" style="border:0px;border-bottom:1px dashed #000" />
<a href="tab_view.php?id_quiz=<?php echo $row_Recordset1['id_quiz']; ?>" target="_blank" onClick="return popup(this, 'notes')"><?php echo $row_Recordset1['title']; ?></a></td>
</tr>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</table>
</div>
</body>
</html>
<?php
mysql_free_result($Recordset1);
?>
Tag : PHP
|
|
|
|
|
|
Date :
2013-10-08 13:38:07 |
By :
ghosting |
View :
1168 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียนเองง่ายกกว่าครับ
PHP MySQL List Record Paging/Pagination
เลิกใช้ Dream เขียน Code PHP ชีวิตจะง่ายขึ้นเยอะเลยครับ
|
|
|
|
|
Date :
2013-10-08 14:14:22 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค๊าฟ
|
|
|
|
|
Date :
2013-10-08 14:16:57 |
By :
ghosting |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|