Ok, so i got my news system workin ok. but how do i have it show up
in reverse order? Because now i have like maybe 3 news thingys but
its showing the oldest first and newest on the bottom, i need it in that
opposite way
err Infamous's custom peice of **** news system... why?
lol
im using that code you gave me and i have it displayin on the frontpage,
workin pretty nice to but then i relized the news is updating backwards...
ok infamous since no one else has found the code i went ahead and found
it for you! you need to apply this code under the line where it is querying
the db. it should look like
[code:1:c195952f99] mysql_select_db('bolclan_news', $dbcon);
$res = mysql_query('select * from main', $dbcon);
$sql .= 'ORDER BY `date` DESC LIMIT 0, 30';
if (!$res) die(mysql_error());[/code:1:c195952f99]
Where "$sql .= 'ORDER BY `date` DESC LIMIT 0, 30';" was inserted to sort
out the Entries by their date.