Jump to content

[SOLVED] How to get last 20 records from DB


jjmusicpro

Recommended Posts

I am trying to make a news page, where it will show archived news items, and the last 3 news items.

I wanted to do a query to get last 10, display 7 of those with just name/title and date, then the other three, with name/title date and info.

 

I can do it in 2 querys thats fine, i just dont know how to get the last 20 records, then -3 from it.

$count = 0;

while($row = mysql_fetch_array($result)) {

 

if($count < 7){

echo $row['name'] . " " . $row['title'] . " " . $row['date'];

}

else{

echo $row['name'] . " " . $row['title'] . " " . $row['date'] . " " . $row['info'];

$count = 0;

}

count++;

}

 

 

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.