Can anyone help me find the problem with this loop. I have tried everything that my little knowledge will allow. The database is working as I can extract one row. But this loop now shows nothing.
PLease HELP.
if($tsx)
mysql_select_db('johnt_core');
$queries = "SELECT date,url,title FROM news WHERE symbol='$tsx' ORDER BY date DESC LIMIT 5";
$desult = mysql_query($queries)
or die ("Could not execute query");
while ($now = mysql_fetch_array($desult));
{
?>
<table border='0' width='400'>
<tr><td width='100' height='20'><font face='arial' size='1'><?php $now["date"]; ?></td>
<td width='300' height='20' align='center'><a href='<?php $now["url"]; ?>' target='_blank'><?php $now["title"]; ?></a></font></td>
</tr></table>
<?php } ?>