Jump to content

help displaying news articles from database


jbrill

Recommended Posts

Hey, i posted yesterday about the project im working on.. (previous post: http://www.phpfreaks.com/forums/index.php/topic,139793.0.html )

 

my question is, how do i only show the 3 latest news releases. I just want to display the 3 most recent posts on the index and when they click news they will be able to view all of the previous news articles.

 

Keep in mind i am new to php but am a quick learner.

 

thanks again.

You would just make a query that limits the results to 3 and order then in DESC order so you get the 3 latest posts. Then loop though them.

 

$query = mysql_query("SELECT * FROM news ORDER BY id DESC LIMIT 3");

   while ($row = mysql_fetch_assoc($sql)){

      echo $row['subject'].'<br>' . $row['body'] . '<p>';

   }

 

Then obviously to display all the news posts, you would just get rid of the LIMIT in the query.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.