|
|
|
ต้องการแบ่งหน้า แบบ เป็นตาราง Column มากกว่า 2 Column ต้องทำอย่างไรครับ |
|
|
|
|
|
|
|
ต้องการแบ่งหน้า แบบ เป็นตาราง Column มากกว่า 2 Column ต้องทำอย่างไรครับ
โค๊ตนี้ แบ่งหน้าได้ แต่เป็น แบบ <br/> คือผมต้องการให้แสดงแบบ <table> หลาย ๆ Column ครับ
รบกวนผู้รู้ด้วยนะครับ ขอบคุณครับ
Code (PHP)
<?php
$hostNameDB = "localhost";
$userNameDB = "zaacom_webboard";
$passWordDB = "FbgX2wXf";
//$conn = mysql_pconnect($hostname, $username, $password) or trigger_error(mysql_error(),E_USER_ERROR);
$conn = mysql_connect($hostNameDB, $userNameDB, $passWordDB) or die ("Cannot connect to Server or connect db_cmpdurable Database");
mysql_query("SET NAMES tis620", $conn);
mysql_query("USE zaacom_webboard");
$page = (isset($_GET['page']))? intval($_GET['page']) : 1;
$limit_end = 16;
$limit_start = ($page-1)*$limit_end;
$send = "";
if(isset($_GET["id"]) and $_GET["id"] != ""){
$send = "id=" . $_GET["id"];
$condition= " WHERE AlbumID = '" . $_GET["id"] . "'";
}
$sql = "SELECT * FROM album" . $condition;
$query_id = mysql_query($sql . " LIMIT " . $limit_start. "," . $limit_end, $conn);
$count = mysql_num_rows($query_id);
$total = mysql_num_rows(mysql_query($sql, $conn));
if($total > 0){
while($rows = mysql_fetch_assoc($query_id)){
echo $rows["AlbumID"]."<br>";
}
echo "\n<div style=\"float:left;\">Page : " . page_navi($page, $limit_end, 4, $total, $send) . " </div><div style=\"float:right;\">[" . ($limit_start+1) . "-" . ($limit_start+$count) . "] of <strong>" . $total . "</strong></div>";
}
?>
Tag : MySQL, HTML/CSS, Linux
|
|
|
|
|
|
Date :
2014-07-15 23:27:24 |
By :
picpost |
View :
975 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวนี้หรือเปล่าครับ
PHP MySQL Multiple Column and Paging/Pagination
|
|
|
|
|
Date :
2014-07-16 10:17:33 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
ได้เรียบร้อยครับ
|
|
|
|
|
Date :
2014-07-16 18:00:59 |
By :
picpost |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|