PHP Code:
$blast_msg = $db->query_read("SELECT * FROM blastmsg ORDER BY blastid DESC");
if (!$db->num_rows($blast_msg))
{
$blasterr = "<div align=center><i>There are no blast messages!</i></div>";
}
else
{
while ($blast = $db->fetch_array($blast_msg))
{
$user = $blast[user];
$date = $blast[date];
$message = $blast[message];
}
}
I tried this also -- is this what you're talking about? Either way, this one didn't work either.
Should I try this instead:
PHP Code:
$blast_msg = $db->query_read("SELECT * FROM blastmsg ORDER BY blastid DESC LIMIT 0,3");