LOL, of all the possible ways of typing it, i must have not tried that one! it works!
using
select * from table order by id DESC limit 5???
Im sure i trie dit! lol
Just one final thing...
I have just displaying 5 posts on the main screen...then i got a link at the bottom to view older posts...
Now, i had to copy the entire page scrpt, and just change
select * from table order by id DESC limit 5
to
select * from table order by id DESC limit 20,5???
Whats the way to instead of having a page with the same code on, with just one line changed, to just a simple link??? do you understaans what im saying??? just so i havent gotta have anew page...can i do that script on the same page?