有个小问题!向各位请教!!
请大家看一下以下代码:
<td width="166">
<marquee direction=up TrueSpeed scrollAmount=1 scrollDelay=40 height=160 onMouseOut=this.start(); onMouseOver=this.stop(); width=160 border="0">
<?
$MYSQL->query("SELECT * FROM pe_new_idea order by id desc LIMIT 0,10");
$count=$MYSQL->rows;
for($i=0;$i<$count;$i++){
$MYSQL->fetch($i);
$title_1=$Fnct->Fnct_SubStr($MYSQL->data[title],26);
echo "<span class='unnamed1'><font color='#eeFFFF'>";
echo "<a href='newideas_view.php?id=".$MYSQL->data[id]."' target='_bank'>";
echo " $title_1<br>";
echo "</font></span>";
echo "</a><br>";
}
?>
<div align='center'>
<a href='newideas.php' target='_blank'><span class='unnamed1'><font color='#EEFFFF'>更多...</font></span></a>
</div>
</marquee>
</td>
应该知道这段代码的意思了,这里当中“更多...”怎么没能显示出来,这是怎么会事?
请各位大哥指点一下!!谢谢了!!