|
|
|
การจัดเรียงรูป+ข้อมูลในแนวนอน ทำแบบไหนครับ อยากให้มันเรียงเป็นแถว ๆ ด้วยคัรบ |
|
|
|
|
|
|
|
ขอบคุณครับพี่วิน เดี๊ยวลองดูก่อนน่ะคัรบ
ถ้าติดขอมาถามใหม่น่ะครับ อิอิ
|
|
|
|
|
Date :
2010-07-22 11:38:55 |
By :
titatree |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ได้อ่ะครับพี่วิน ไม่ขึ้นอะไรเลย
เหมือนเดิมทุกอย่างครับ
ปล.ต้องทำที่หน้านี้ใช่ไหมครับ
|
|
|
|
|
Date :
2010-07-22 12:00:58 |
By :
titatree |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอดันหน่อยครับ
|
|
|
|
|
Date :
2010-07-22 15:28:28 |
By :
titatree |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองอันนี้ดูครับผมก็ใช้อยู่
Code (PHP)
<TABLE cellSpacing=0 cellPadding=0 width="95%" border=0>
<TBODY>
<TR>
<TD align=left width=18
rowSpan=2></TD>
<TD width="9" vAlign=top> </TD>
<TD width="408" height="22" valign="top"> <span class="style1"><?="$catalogs[name]"?>.</span></TD>
<TD width="418" vAlign=top> </TD>
<TD align=right width=22
rowSpan=2></TD>
</TR>
<TR>
<TD colspan="3" vAlign=top>
<?PHP
include("connect.php");
$table="tbl_web_news";
echo "<table><tr>";
$sql = "select * From $table;";
$Per_Page =4; /* ตั้งค่า แสดงผลต่อหน้า $Per_Page */
if(!$Page)
$Page=1;
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$result = mysql_query($sql);
$Page_start = ($Per_Page*$Page)-$Per_Page;
$Num_Rows = mysql_num_rows($result);
if($Num_Rows<=$Per_Page)
$Num_Pages =1;
else if(($Num_Rows % $Per_Page)==0)
$Num_Pages =($Num_Rows/$Per_Page) ;
else
$Num_Pages =($Num_Rows/$Per_Page) +1;
$Num_Pages = (int)$Num_Pages;
if(($Page>$Num_Pages) || ($Page<0))
print "<center><b>จำนวน $Page มากกว่า $Num_Pages เกิดการผิดพลาด<b></center>";
$sql = "select * From $table WHERE is_show=1 AND status=1 order by id asc LIMIT $Page_start , $Per_Page";
//ส่วนแสดงผล
$result = mysql_query($sql);
While($row= mysql_fetch_array($result))
{
$icon[]=$row["icon"];
$news_id[] = $row["id"];
$topic[] = $row["topic"];
$time[]=$row["time"];
}
echo"<table><tr>";
for($i=0;$i<count($news_id);$i++) {
if($i%2==1)
{
// กรณี้มีตัวเดียว
echo "<td>";
?>
<table width="280" cellspacing="0" cellpadding="0">
<tr>
<td width="50" valign="middle">
<div align="center"><img src="admin/content/files/news/<?="$icon[$i]"?>" width="50" height="50"/> </div></td>
<td width="5" valign="top"><a href="#"><strong> </strong></a></td>
<td width="188" valign="top"><a href="?modul=news&id=<?="$news_id[$i]"?>"><?="$topic[$i]"?></a><br>[<?="$time[$i]"?>]</td>
</tr>
</table>
<?
echo"</td></tr>";
}
else
{
//กรณีมี 2 ตัว
echo "<td>";
?>
<table width="280" cellspacing="0" cellpadding="0">
<tr>
<td width="54" valign="middle">
<div align="center"><img src="admin/content/files/news/<?="$icon[$i]"?>" width="50" height="50"/> </div></td>
<td width="5" valign="top"><a href="#"><strong> </strong></a></td>
<td width="188" valign="top"><a href="?modul=news&id=<?="$news_id[$i]"?>"><?="$topic[$i]"?></a><br>[<?="$time[$i]"?>]</td>
</tr>
</table>
<? echo"</td>";
}
}
echo"</tr></table>";
mysql_close();
?> <br>
<div align="right"><br>
<?
if($Num_Rows>4){
print("<a href=\"?status=news\">ข่าวอื่นๆ >></a>");
}
?>
</div></TD>
</TR>
<TR vAlign=bottom>
<TD height=13 colspan="5"> </TD>
</TR>
</TBODY>
</TABLE>
|
|
|
|
|
Date :
2010-07-22 15:54:54 |
By :
aunjijoke |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใส่ตรงไหนครับ คือใส่ในหน้าไหนครับ
หน้านี้ไหมครับ
Code (PHP)
<TABLE cellSpacing=0 cellPadding=0 width="95%" border=0>
<TBODY>
<TR>
<TD align=left width=18
rowSpan=2></TD>
<TD width="9" vAlign=top> </TD>
<TD width="408" height="22" valign="top"> <span class="style1"><?="$catalogs[name]"?>.</span></TD>
<TD width="418" vAlign=top> </TD>
<TD align=right width=22
rowSpan=2></TD>
</TR>
<TR>
<TD colspan="3" vAlign=top>
<?PHP
include("connect.php");
$table="tbl_web_news";
echo "<table><tr>";
$sql = "select * From $table;";
$Per_Page =4; /* ตั้งค่า แสดงผลต่อหน้า $Per_Page */
if(!$Page)
$Page=1;
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$result = mysql_query($sql);
$Page_start = ($Per_Page*$Page)-$Per_Page;
$Num_Rows = mysql_num_rows($result);
if($Num_Rows<=$Per_Page)
$Num_Pages =1;
else if(($Num_Rows % $Per_Page)==0)
$Num_Pages =($Num_Rows/$Per_Page) ;
else
$Num_Pages =($Num_Rows/$Per_Page) +1;
$Num_Pages = (int)$Num_Pages;
if(($Page>$Num_Pages) || ($Page<0))
print "<center><b>จำนวน $Page มากกว่า $Num_Pages เกิดการผิดพลาด<b></center>";
$sql = "select * From $table WHERE is_show=1 AND status=1 order by id asc LIMIT $Page_start , $Per_Page";
//ส่วนแสดงผล
$result = mysql_query($sql);
While($row= mysql_fetch_array($result))
{
$icon[]=$row["icon"];
$news_id[] = $row["id"];
$topic[] = $row["topic"];
$time[]=$row["time"];
}
echo"<table><tr>";
for($i=0;$i<count($news_id);$i++) {
if($i%2==1)
{
// กรณี้มีตัวเดียว
echo "<td>";
?>
<table width="280" cellspacing="0" cellpadding="0">
<tr>
<td width="50" valign="middle">
<div align="center"><img src="admin/content/files/news/<?="$icon[$i]"?>" width="50" height="50"/> </div></td>
<td width="5" valign="top"><a href="#"><strong> </strong></a></td>
<td width="188" valign="top"><a href="?modul=news&id=<?="$news_id[$i]"?>"><?="$topic[$i]"?></a><br>[<?="$time[$i]"?>]</td>
</tr>
</table>
<?
echo"</td></tr>";
}
else
{
//กรณีมี 2 ตัว
echo "<td>";
?>
<table width="280" cellspacing="0" cellpadding="0">
<tr>
<td width="54" valign="middle">
<div align="center"><img src="admin/content/files/news/<?="$icon[$i]"?>" width="50" height="50"/> </div></td>
<td width="5" valign="top"><a href="#"><strong> </strong></a></td>
<td width="188" valign="top"><a href="?modul=news&id=<?="$news_id[$i]"?>"><?="$topic[$i]"?></a><br>[<?="$time[$i]"?>]</td>
</tr>
</table>
<? echo"</td>";
}
}
echo"</tr></table>";
mysql_close();
?> <br>
<div align="right"><br>
<?
if($Num_Rows>4){
print("<a href=\"?status=news\">ข่าวอื่นๆ >></a>");
}
?>
</div></TD>
</TR>
<TR vAlign=bottom>
<TD height=13 colspan="5"> </TD>
</TR>
</TBODY>
</TABLE>
|
|
|
|
|
Date :
2010-07-26 16:10:58 |
By :
titatree |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|