File size: 1.06Kb
<p class="b_head"><strong>Trending Music This Week</strong></p>
<?php
{
$emir=mysql_query("SELECT `id`, `title`, `downloads`, `img` FROM `b_music` ORDER BY `id` DESC LIMIT 2");
$naijakitquery=mysql_num_rows($emir);
if($naijakitquery==0)
{ echo"<div class='msg'><li><b>Sorry! No Trending Musics yet.Check Back Later.</b></li></div>"; }
else {
echo"<ul>";
while($info=mysql_fetch_array($emir))
{
$name=$info["title"];
$id2=$info["id"];
$url=$info["url"];
$img=$info["img"];
$downloads=$info["downloads"];
echo"<a href='../music/view.php?id=$id2'><div style='background-color: black; padding: 9px; border: 1px solid red; border-radius: 6px; margin-bottom: 5px;'><table><tbody><tr><td><span class='img'><img src='$img' width='55' height='48' alt='$name'/></span></td><td> $name<br><font color='red'> Downloads: $downloads</font></td></tr></tbody></table></div></a>";
}
echo"</ul>";
}
} ?>
<div align='center'><table width='100%' border='0 '>
<tr>
<td align='right'><a href='http://www.joyloaded.com/music/category.php?id=4'>More musics</a></td>
</tr>
</table></div>