Hi,
Below code working fine in firefox,but not working in IE,Chrome,Opera.
Need Suggestions.
<div class="topheading"><b>Headlines:</b></div>
<div id="marquee_wrap">
<marquee direction="left" scrollamount="2">
<?php
include('../db.php');
$headlineNewsQuery=mysql_query("SELECT * from svn_headline order by newsid DESC LIMIT 0,8 ");
while($headlinenewsresult=mysql_fetch_assoc($headlineNewsQuery)){
//$newsHeadline=$headlinenewsresult['newsheadline'];
?>
<li><img src="images/maq-bullet.png" /><?php echo $headlinenewsresult['newsheadline']; ?> </li>
<?php }?>
</ul></marquee>
</div>