Darius Watts
Why is the last line of each entry lower than the normal enter?
EDIT :
can u try to use <tr><td></td></tr> tags instead of <br/> ???
reg kevin
remove the blank space after the </font> tag
</font> <br> should be </font><br> the blank space is treated as the default font size (bigger than the font size applied to the text) it pushes the rest of the line down
thanks!
i have ORDER BY id in my query for the little news notes, but it's putting the lowest id on top, how do i get to to put the highest id on top?
Originally posted by cmccomas thanks! i have ORDER BY id in my query for the little news notes, but it's putting the lowest id on top, how do i get to to put the highest id on top?
order by id desc
$query = "SELECT id, headline, story, timestamp FROM news ORDER BY id LIMIT 10";
How do I get it to put the highest id at the top of the page?
just add desc (descending) to the sql statement like:
$query = "SELECT id, headline, story, timestamp FROM news ORDER BY id desc LIMIT 10";