Owen
04-01-2004, 11:02 AM
<?php
////database info removed
mysql_connect($db_host, $db_user, $db_pw)
OR die ("Cannot connect to your database");
mysql_select_db($db_name) OR die("Cannot connect to your database");
$thread_sql = mysql_query("SELECT nowplaying FROM post WHERE visible=1 AND open=1 ORDER BY nowplaying DESC LIMIT 0 , 10);
while($thread_get=mysql_fetch_array($thread_sql))
{
$song = $thread_get[nowplaying];
echo "$thread_get[nowplaying]";
}
?>
I am trying to get the last songs played, so I want to get the latest # entries from the nowplaying entry in the posts table.
////database info removed
mysql_connect($db_host, $db_user, $db_pw)
OR die ("Cannot connect to your database");
mysql_select_db($db_name) OR die("Cannot connect to your database");
$thread_sql = mysql_query("SELECT nowplaying FROM post WHERE visible=1 AND open=1 ORDER BY nowplaying DESC LIMIT 0 , 10);
while($thread_get=mysql_fetch_array($thread_sql))
{
$song = $thread_get[nowplaying];
echo "$thread_get[nowplaying]";
}
?>
I am trying to get the last songs played, so I want to get the latest # entries from the nowplaying entry in the posts table.