ผม Shakid มีปัญหาของการเว้นบรรทัดครับ คือผมทำระบบ update ข่าวครับที่มีหน้า admin แล้วก้อกรอกก้อจะมา Show
ใส่ limit ใน select * ......
โดย ใช้ดังนี้ .... limit m,n .....
m : ค่าเริ่มต้น แต่จะหักลบออกไปหนึ่ง เช่น หากต้องการเลือกอันดับที่ 1 ก็ให้เขียนเป็น 0 ถ้าเลือก 5 ให้เขียน 4
n : จำนวนข้อมูลที่ต้องการให้แสดง เช่นต้องการแสดงข้อมูล 3 อันก็ใส่ 3 ลงไป
เช่น
$sql = "Select * From new_wairun order by id desc limit 0,3";
//order by ใช้สำหรับเรียงข่าว เช่น ต้องการให้ข่าวล่าสุดอยู่ก่อนก็ใส่ order by field desc แต่ถ้าต้องการให้เรียงแบบจากของเก่าสุด ก็ให้เอา desc ออก
.........
//จบอันแรก (ข่าวจำนวน 3 เรื่องล่าสุด)
//เริ่มอันที่สอง (ข่าวจำนวน 4 - 6 เรื่องล่าสุด)
$sql = "Select * From new_wairun order by id desc limit 3,3";
.........
เป็นต้นนะครับ
Date :
2 พ.ย. 2547 20:25:11
By :
coolthai
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<?
require("webboard/db_board.php");
$sql = "Select * From new_wairun order by id desc limit 0,6";
$result = mysql_query($sql)or die(mysql_error());
while($i < $rs = mysql_fetch_array($result)){
$id = $rs[id];
$topic = $rs[topic];
$picture = $rs[picture];
echo "<tr><td valign='top'><img src='admin/picture/$picture' width='119' height='97' value='$id'><center><a href='new_wairun/read_new.php?id=$id' target='_blank'><font face='MicroSoft Sans Serif' size='1' color='red'>".$topic."</center></font></td></tr>";
}
</table>
ไม่รู้ว่าตอบช้าไปหรือเปล่านะครับ ที่คุณทำผิดก็คือ สำหรับการใช้ table นั้น ถ้าต้องการให้มันขึ้นบรรทัดต้องนั้น ต้องคลุมด้วย <tr></tr> ครับ แต่ใน code ของคุณ คุณใส่ <tr></tr> คลุมทั้ง 6 ข่าว ดังนั้นมันจึงขึ้นมาบรรทัดเดียวกันหมดเลย ส่วนคำสั่ง sql ผมเอามาจากความเห็นที่ 2 ครับ
Date :
3 พ.ย. 2547 14:36:20
By :
ลิ้ม นภาลัย
Code (phpMultiColumn.php)
<?php
/*** By Weerachai Nukitram ***/
/*** http://www.ThaiCreate.Com ***/
?>
<html>
<head>
<title>ThaiCreate.Com Multiple Column</title>
</head>
<body>
<div align="center">
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM gallery ORDER BY GalleryID ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
echo"<table border=\"0\" cellspacing=\"1\" cellpadding=\"1\"><tr>";
$intRows = 0;
while($objResult = mysql_fetch_array($objQuery))
{
$intRows++;
echo "<td>";
?>
<table width="91" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><div align="center"><a href="gallery/<?=$objResult["Picture"];?>" target="_blank"><img src="gallery/<?=$objResult["Thumbnails"];?>" width="70" height="53" border="0"></a></div></td>
</tr>
<tr>
<td><div align="center"><?=$objResult["GalleryName"];?></div></td>
</tr>
</table>
<?
echo"</td>";
if(($intRows)%2==0)
{
echo"</tr>";
}
else
{
echo "<td>";
}
}
echo"</tr></table>";
?>
<?
mysql_close($objConnect);
?>
</div>
</body>
</html>
Multiple Column แสดงข้อมูลจากฐานข้อมูลด้วยการแบ่งออกเป็นหลาย Column
Date :
2009-04-25 07:38:15
By :
webmaster
Load balance : Server 05