|
|
|
ช่วยดูให้ทีค่ะ คำถามเดิม ๆ เกี่ยวกับ marquee ที่แสดงผลจากฐานข้อมูลทั้งรูปและข้อความค่ะ |
|
|
|
|
|
|
|
ใส่ตารางให้มันสิ
|
|
|
|
|
Date :
2012-01-30 12:20:16 |
By :
systemanalysis |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใส่ยังไงเหรอคะ
|
|
|
|
|
Date :
2012-01-30 13:06:33 |
By :
because |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<div align="center">
<?php
require_once "connectdb.php";
$sql = "select * from banners20 order by id desc limit 0,5";
$dbquery = mysql_db_query($db, $sql);
?>
<p>
<marquee onMouseOver="this.scrollAmount=0" onMouseOut="this.scrollAmount=2" scrollamount="2" direction="left" loop="true" width="100%">
<?php
while($result = mysql_fetch_array($dbquery))
{
?>
<table width="120" border="0" cellspacing="1" cellpadding="1">
<tr>
<td><a href="<?=trim($result['links'])?>" target="_bank"><img src="admin/banner120/<?=trim($result["banners"])?>" width="120" border="0"/></td>
</tr>
<tr>
<td><?=trim($result['bannerstext'])?></td>
</tr>
</table>
<?php
}
?>
</marquee>
</p>
</div>
ลองมาใส่ตารางแล้ว มันเลื่อนเป็นแถวยาวลงมาเลยค่ะ ไม่ได้แสดงผลแถวเดียวอ่ะค่ะ
แก้ยังไงคะ
|
ประวัติการแก้ไข 2012-01-30 13:10:02
|
|
|
|
Date :
2012-01-30 13:08:25 |
By :
because |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-01-30 14:11:49 |
By :
because |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-01-30 18:43:59 |
By :
because |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ข่ยดูให้ทีนะคะ
|
|
|
|
|
Date :
2012-01-31 13:43:23 |
By :
because |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<div align="center">
<?php
require_once "connectdb.php";
$sql = "select * from banners20 order by id desc limit 0,5";
$dbquery = mysql_db_query($db, $sql);
?>
<p>
<marquee onMouseOver="this.scrollAmount=0" onMouseOut="this.scrollAmount=2" scrollamount="2" direction="left" loop="true" width="100%">
<table width="120" border="0" cellspacing="1" cellpadding="1">
<tr>
<?php $column = 3; $i = 1; while($result = mysql_fetch_array($dbquery)){ ?>
<td>
<a href="<?=trim($result['links'])?>" target="_bank">
<img src="admin/banner120/<?=trim($result["banners"])?>" width="120" border="0"/>
</a>
<br /><?=trim($result['bannerstext'])?>
</td>
<?php if($i%$column == 0){ echo "</tr><tr>"; } ?>
<?php $i++;} ?>
</tr>
</table>
</marquee>
</p>
</div>
ลองเอาไปประยุคดูครับ
|
|
|
|
|
Date :
2012-01-31 15:32:54 |
By :
50121680 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|