|
|
|
ดึงรูปภาพมาแสดงหลายๆรูป แบบวนลูป วานท่านเทพทั้งหลายช่วยทีนะครับผม |
|
|
|
|
|
|
|
ตอนนี้ทำได้ถึงขั้นไหนแล้วครับ มีโค้ดให้ดูไหม
|
|
|
|
|
Date :
2011-07-08 00:01:36 |
By :
ppanchai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องขอโทดนะครับมันยังมั่วๆ อยู่อ่ะคับผม แต่คอนเชปประมาณนี้อ่ะครับผม
Code (PHP)
<?php
////============ อ่านรายการสินค้าล่าสุด
$sqlNewPro="select * from tb_news where id_news=$id_news";
$queryNewPro=mysql_query($sqlNewPro);
echo"<table align=center><tr>";
$i=0;
while($resutNewPro=mysql_fetch_array($queryNewPro))
{
$i++;
echo "<td>";
?>
<table width="121" height="128">
<tr>
<td height="60" valign="top"><div align="center"><a href="news_show.php?id_news=<?=$resutNewPro["id_news"];?>&id_news=<?=$resutNewPro["id_news"];?>"><img src="images/new_large/<?=$resutNewPro["Pic1"];?>" width="200" height="150" border="0"></a></div></td>
</tr>
</table>
<?php
//============ แสดงแถวละ 2
echo"</td>";
if(($i)%4==0)
{
echo"</tr>";
}
else
{
echo "<td>";
}
}
echo"</tr></table>";
?>
|
|
|
|
|
Date :
2011-07-08 00:05:05 |
By :
shinjangs |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
////============ อ่านรายการสินค้าล่าสุด
$sqlNewPro="select * from tb_news where id_news=$id_news";
$queryNewPro=mysql_query($sqlNewPro);
echo "<table width=121 height=128>";
while($resutNewPro=mysql_fetch_array($queryNewPro))
{
?>
<tr>
<td height="60" valign="top">
<div align="center">
<a href="news_show.php?id_news=<?=$resutNewPro["id_news"];?>&id_news=<?=$resutNewPro["id_news"];?>">
<img src="images/new_large/<?=$resutNewPro["Pic1"];?>" width="200" height="150" border="0" />
</a>
</div>
</td>
</tr>
<?php
}
?>
</table>
แค่นี้น่าจะพอแล้วมั้งครับ
|
ประวัติการแก้ไข 2011-07-08 00:14:02 2011-07-08 00:16:37
|
|
|
|
Date :
2011-07-08 00:13:04 |
By :
ppanchai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอแนะนำนิดนึงจะครับ ผมว่าน่าจะแยกรูปภาพไปเก็บอีกตารางนะครับ แล้วลิ้งกันด้วย id_news เพราะถ้าต่อไปในอนาคตต้องการใส่รูปมากกว่า5รูป จะได้ไม่ได้ต้องมาแก้ดาต้าเบส น่าจะมีฟิลด์ประมาณนี้
ตาราง tb_news
tb_news(id_new,type_news,title,details)
ตาราง tb_images
tb_image(id_img,img_desc,img_path,id_news)
เป็นความเห็นส่วนตัวนะครับ แค่แนะนำ ถ้าคุณคิดว่าไม่เป็นไรก็ไม่ต้องแก้ไขก็ได้
|
|
|
|
|
Date :
2011-07-08 08:52:59 |
By :
naskw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่เปงไร ระบบเล็กๆครับ แต่อยากรู้วิธีมากกว่าด้วยครับ เผื่อเอาไว้ใช้อย่างอื่นด้วยครับ
กำลังงมๆ ดูอยู่ครับ
|
|
|
|
|
Date :
2011-07-08 09:47:33 |
By :
shinjangs |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กำลังพยายามครับ ใครทำได้ตอบด้วยนะครับผม
Code (PHP)
<?php
include("connect/connect.php");
$sql = "SELECT * FROM tb_news where id_news=$id_news";
$intRow=0;
$query = mysql_query($sql);
While($resultPic= mysql_fetch_array($query))
$pic=$resultPic["pic1"];
{
$intRows++
?>
<table width="99" border="1">
<tr>
<td class="lista" valign="top" width="22">
<div align="center"><a target="_blank" href="news_show.php?id_news=<?=$resultPic["id_news"];?>&id_news=<?=$resultPic["id_news"];?>"><img src="images/new_large/<? echo"$pic"?>" width="200" height="150" border="0"/></a></div></td>
</tr>
<?php
}
?>
</table>
|
|
|
|
|
Date :
2011-07-08 15:23:38 |
By :
shinjangs |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|