This work is licensed under a Creative Commons Attribution-NonCommercial 2.5 License.
0) { ?>
|
|
p'>";
echo "Newest Lyrics:
";
$temp = mysql_query("SELECT id, title, artist, artwork, views, dateadded FROM tracks WHERE artwork IS NOT NULL AND artwork != 'na' ORDER BY dateadded DESC LIMIT 10");
if($temp) {
echo "";
while($row = mysql_fetch_array($temp)) {
echo "";
echo " ";
echo " | ".$row[artist]." | ";
echo "".stripslashes($row[title])." view lyrics (".$row[views]." views)
| ";
}
echo " ";
}
echo " ";
?>
|
?>