|
|
|
ใช้ id กับ class แทรกใน php ไม่แสดงผลตาม css ค่ะ ไม่แน่ใจว่ามีโค้ดตรงไหนผิดรึป่าว รบกวนช่วยดูด้วยค่ะ |
|
|
|
|
|
|
|
ขอดู CSS ด้วยสิครับ
|
|
|
|
|
Date :
2011-07-26 14:41:19 |
By :
ppanchai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือ CSS เวลาแสดงในรูปแบบ html มันแสดงปกติน่ะค่ะ แต่พอนำมาแทรกใน php กลับไม่แสดงค่ะ
|
|
|
|
|
Date :
2011-07-26 14:48:41 |
By :
Nuntida.Nay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณลอง view source ดูในหน้า web browser น่ะครับ ว่ามัน generate เป็น html ถูกต้องหรือไม่
|
|
|
|
|
Date :
2011-07-26 16:24:50 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบนี้ไม่ยอมแสดงผลน่ะค่ะ
Code (PHP)
<div id='slidedeck_frame' class='skin-slidedeck'>
<dl class='slidedeck'>
<dt>IT Management</dt>
<?php
include 'startconnect.inc.php';
$sqls = "select article_id , atitle, pdetail , tpic
from tblarticle where type_id = 4 and and current_date >= upddate
order by article_id DESC LIMIT 0,1";
$sarticle = mysql_query($sqls) or die(mysql_error());
while($sfield = mysql_fetch_array($sarticle)){
$article_id = $sfield['article_id'];
$atitle = $sfield['atitle'];
$pdetail = $sfield['pdetail'];
$tpic = $sfield['tpic'];
?>
<dd>
<a href="view_article.php?article_id=<?=$article_id?>" target="_blank">
<?=$atitle?></a><br/>
<img src="picture/article/<?=$tpic?>"
width="50" height="50" align="left" alt="<?=$article_id?>" />
<?=$atitle?><br/>
<a href="view_article.php?article_id=<?=$article_id?>" class="readmoreright" style="text-align:right" target="_blank">Read more...</a>
</dd>
<? } ?>
</dl>
</div>
แต่พอตัด โค้ด php นี้ออก มันแสดงผลตามcssเหมือนเดิมค่ะ ไม่ทราบว่าเป็นเพราะอะไรคะ
<?php
include 'startconnect.inc.php';
$sqls = "select article_id , atitle, pdetail , tpic
from tblarticle where type_id = 4 and and current_date >= upddate
order by article_id DESC LIMIT 0,1";
$sarticle = mysql_query($sqls) or die(mysql_error());
while($sfield = mysql_fetch_array($sarticle)){
$article_id = $sfield['article_id'];
$atitle = $sfield['atitle'];
$pdetail = $sfield['pdetail'];
$tpic = $sfield['tpic'];
?>
|
|
|
|
|
Date :
2011-07-28 22:12:30 |
By :
Nuntida.Nay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|