shiny Posted September 4, 2008 Share Posted September 4, 2008 how would i have the newsposts list down the page, the most current post first, right now i post some news and it only shows the last post. Link to comment https://forums.phpfreaks.com/topic/122668-shownewsphp/ Share on other sites More sharing options...
Ken2k7 Posted September 4, 2008 Share Posted September 4, 2008 Does the newspost have an ID column? SELECT * FROM `table_name` ORDER BY `id` DESC Link to comment https://forums.phpfreaks.com/topic/122668-shownewsphp/#findComment-633435 Share on other sites More sharing options...
shiny Posted September 4, 2008 Author Share Posted September 4, 2008 $query = "SELECT * FROM news_posts ORDER BY id DESC LIMIT 0 , 5"; i tried changing up those values earlier, or am i even where i should be. thats in the shownews.php. lol Link to comment https://forums.phpfreaks.com/topic/122668-shownewsphp/#findComment-633447 Share on other sites More sharing options...
burn1337 Posted September 4, 2008 Share Posted September 4, 2008 call it by rows. $query = "select * from tbl_name" $count = get_rows (i.e. mysql_num_rows) $count --; (i.e. mysql_result($query, $count, field int)) then loop a display decrement $count after each post is displayed Link to comment https://forums.phpfreaks.com/topic/122668-shownewsphp/#findComment-633466 Share on other sites More sharing options...
DjMikeS Posted September 4, 2008 Share Posted September 4, 2008 Can you post some code because: $query = "SELECT * FROM news_posts ORDER BY id DESC LIMIT 0 , 5"; should work just fine... Link to comment https://forums.phpfreaks.com/topic/122668-shownewsphp/#findComment-633472 Share on other sites More sharing options...
burn1337 Posted September 4, 2008 Share Posted September 4, 2008 Go look at the code I posted in the Tree menu thread, I think you should be able to get the picture of what I mean by that, sorry I'm in the middle of coding my forum. Link to comment https://forums.phpfreaks.com/topic/122668-shownewsphp/#findComment-633474 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.