ok... here an example:
Guess you want to select the 10 most actual news from out a table "NEWS" with the following fields:
news_id
news_caption
news_date
To do so, you need the following statement:
SELECT NEWS.`news_id`, NEWS.`news_caption`, NEWS.`news_date` FROM NEWS ORDER BY NEWS.`news_date` DESC LIMIT 0,10
That's all... this script will retrieve the 10 most actual news, do so with other tables - it depends deeply on the order clause.
best regards,
sebastian mohrenstecher
executive secretary
net::allies
www.net-allies.de
info@net-allies.de