
PK 
| ADDRLIN : /home/anibklip/adhocacademy.com/ |
| Current File : /home/anibklip/adhocacademy.com/news.php |
<table cellspacing="3" cellpadding="2" class="login">
<tr>
<th>
</th>
</tr>
<tr>
<td>
<marquee direction="up" onMouseOut="this.start();" onMouseOver="this.stop();" scrollamount="2" scrolldelay="1">
<?php
$sqlSelectForNews="SELECT * FROM news where status=1";
$queryForNews=mysql_query($sqlSelectForNews);
while($fetchForQuery=mysql_fetch_array($queryForNews)){
$i++;
echo $i.'. '.$fetchForQuery['news'].'<br><br>';
} ?>
</marquee>
</td>
</tr>
<tr>
<td> </td>
</tr>
</table>
