เขียนปักหมุด webboard ลองเขียนดูแล้วไม่ออก ต้องเขียนอย่างไรลองเขียนให้ดูหน่อยได้ไมครับ
เขียนปักหมุดwebboardลองเขียนดูแล้วไม่ออก ต้องเขียนอย่างไรลองเขียนให้ดูหน่อยได้ไมครับ
Code (PHP)
<?
session_start();
?>
<!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>ระบบหลังร้าน - เว็บบอร์ด</title>
<link href="css/design.css" rel="stylesheet" type="text/css" />
</head>
<?
include('../process/connect.php');
if(isset($_SESSION['username'])){$username=$_SESSION['username'];}
else if(!isset($_SESSION['username'])){echo"<script>alert('ยังไม่เข้าสู่ระบบ');window.location='index.php';</script>";exit;}
//ข้อมูลร้าน
$sqlSetting="SELECT * FROM setting";
$resultSetting=mysql_query($sqlSetting)or die(mysql_error());
$rowSetting=mysql_fetch_array($resultSetting);
?>
<body>
<div id="menu">
<div class="welcome">ยินดีต้อนรับคุณ <?=$username?></div>
<ul class="menu">
<li><a href="<?=$rowSetting['website_name']."/"?>" target="_blank"><img src="image/store-icon.png"/><br/>หน้าร้าน</a></li>
<li><a href="user.php"><img src="image/admin-icon.png"/><br/>ผู้ใช้</a></li>
<li><a href="process/logout.php"><img src="image/security-icon.png"/><br/>ออก</a></li>
</ul>
<div style="clear:both;"></div>
</div>
<div style="width:962px; margin:20px auto 0 auto; text-align:right;">
<input type="button" value="เพิ่มหัวข้อใหม่" onclick="window.location='webboardPostInsert.php';"/>
</div>
<?
//กำหนดแถวและคอลัมน์
$num_col=1;
$num_row=15;
//เรคคอร์ดที่สิ้นสุด
$page_size=$num_col*$num_row;
//กำหนดค่าเริ่มต้น
$page=isset($_REQUEST['page'])?$_REQUEST['page']:1;
$page=$page-1;
//หาจำนวนหน้า
$sql="SELECT COUNT(*) FROM webboard_post";
$result=mysql_query($sql)or die(mysql_error());
$row=mysql_fetch_array($result);
$num=$row['COUNT(*)'];
//หมายเลขหน้า
$num_page=ceil($num/$page_size);
//เรคคอร์ดที่เริ่ม
$start_record=$page*$page_size;
//เลือกข้อมูล
$sql="SELECT webboard_post.id AS id, webboard_post.subject AS subject, webboard_post.username AS username, webboard_post.email AS email, webboard_post.insert_date AS insert_date, webboard_reply.post_id AS post_id, COUNT(webboard_reply.post_id) AS num_reply FROM webboard_post LEFT JOIN webboard_reply ON webboard_post.id = webboard_reply.post_id GROUP BY webboard_post.id ORDER BY webboard_post.id DESC LIMIT $start_record, $page_size";
$result=mysql_query($sql)or die(mysql_error());
$num=mysql_num_rows($result);
?>
<table class="list" style="margin-top:10px;" align="center" cellpadding="10" cellspacing="0" >
<tr>
<th class="header">หัวข้อ</th>
<th width="100" class="header">ตอบ</th>
<th width="120" class="header">ผู้โพสต์</th>
<th width="120" class="header">วันที่โพสต์</th>
<th width="150" class="header">จัดการ</th>
</tr>
<?
if($num==0){
?>
<td align="center" colspan="5">ไม่มีข้อมูล</td>
<?
}
for($i=0;$row=mysql_fetch_array($result);$i++){
if($i%$num_col==0){
?>
<tr>
<?
}
?>
<td><?=$row['subject']?></td>
<td align="center"><?=number_format($row['num_reply'])?></td>
<td align="center"><?=$row['username']?></td>
<td align="center"><?=substr($row['insert_date'],0,16)?></td>
<td align="center" style="background:#f9f9f9">
<a href="../reply.php?id=<?=$row['id'];?>" target="_blank"><img src="image/icon-view-product.png" class="action" title="ดูบนหน้าร้าน"/></a>
<a href="webboardEdit.php?id=<?=base64_encode($row['id'])?>"><img src="image/icon-view-list.png" class="action" title="ดูหัวข้อนี้"/></a>
<a href="process/webboard/postDelete.php?id=<?=base64_encode($row['id'])?>" onclick="return confirm('ลบหัวข้อ <?=$row['subject']?> ?')"><img src="image/icon-bin.png"class="action" title="ลบ"/></a>
</td>
<?
if($i%$num_col==$num_col-1){
?>
</tr>
<?
}
}
if ($i>$num_col){
for($j=$i;$j%$num_col!=0;$j++){
?>
<td colspan="5" align="center">โค้ดหรือข้อความเมื่อเหลือพื้นที่แสดง</td>
<?
}
}
if($i%$num_col!=0){
?>
</tr>
<?
}
?>
<tr>
<th class="footer" colspan="5">
<div class="num">จำนวน : <?=$num?></div>
<div class="page">
<?
if($page>0){
?>
<a href="webboard.php?page=<?=$page?>" class="page">ก่อนหน้า</a>
<?
}
for($i=0;$i<$num_page;$i++){
if($i==$page){
?>
<page><?=$i+1?></page>
<?
}
else{
?>
<a href="webboard.php?page=<?=$i+1?>" class="page"><?=$i+1?></a>
<?
}
}
if($page<$num_page-1){
?>
<a href="webboard.php?page=<?=$page+2?>" class="page">ถัดไป</a>
<?
}
?>
</div>
</th>
</tr>
</table>
<div style="width:962px; margin:10px auto 0 auto; text-align:left;">
<input type="button" value="เพิ่มหัวข้อใหม่" onclick="window.location='webboardPostInsert.php';"/>
</div>
<?
function rewrite_url($url="url"){
$url=strtolower(str_replace(" ","_",$url));
$url=preg_replace('~[^a-z0-9ก-๙\.\-\_]~iu','',$url);
return $url;
}
mysql_close($conn);
?>
</body>
</html>
DB
`id` int(11) NOT NULL auto_increment,
`subject` text collate utf8_unicode_ci NOT NULL,
`detail` text collate utf8_unicode_ci NOT NULL,
`username` text collate utf8_unicode_ci NOT NULL,
`email` text collate utf8_unicode_ci NOT NULL,
`insert_date` datetime NOT NULL,
`last_update` datetime NOT NULL,
`flag` int(2) NOT NULL,
Tag : PHP, MySQL
ประวัติการแก้ไข 2013-05-16 10:41:14 2013-05-16 10:42:20 2013-05-16 16:16:18
Date :
2013-05-16 10:30:01
By :
solakadi
View :
7901
Reply :
4
เพิ่ม field 1 ฟิว ชื่อ อะไรก็ได้ เช่น pin enum 0,1
เวลา select ก็
Code (PHP)
SELECT * FROM ........ ORDER BY pin DESC, id DESC
Date :
2013-05-16 11:07:39
By :
teez1232002
เขียนไว้ตรงใหนหรอ พอเขียนไปมันแสดงข้อมูลทั้งหมดเลยครับ
Date :
2013-05-16 11:28:05
By :
solakadi
$sql="SELECT webboard_post.id AS id, webboard_post.subject AS subject, webboard_post.username AS username, webboard_post.email AS email, webboard_post.insert_date AS insert_date, webboard_reply.post_id AS post_id, COUNT(webboard_reply.post_id) AS num_reply FROM webboard_post LEFT JOIN webboard_reply ON webboard_post.id = webboard_reply.post_id GROUP BY webboard_post.id ORDER BY pin DESC , webboard_post.id DESC LIMIT $start_record, $page_size";
Date :
2013-05-16 11:32:04
By :
teez1232002
เว็บบอร์ดนี้เขียนเองรึป่าวครับหรือโหลดมาแก้
Date :
2013-05-16 11:33:02
By :
teez1232002
Load balance : Server 03