Jump to content

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.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.