PDA

View Full Version : Latest links without featured links


tomsa
03-01-2006, 02:35 PM
Hello,

i would like to show the latest links on the homepage like {topic moved or deleted} without the featured links

Is it possible to modify the database selection
$top10 = $db->GetOne("SELECT * FROM {$tables['link']['name']} WHERE STATUS = 2 ORDER BY HITS DESC LIMIT 0,10"); to exclude the featured links ?

Thanks for help
Tomsa

tomsa
03-01-2006, 03:38 PM
Sorry for the question it was not very difficult...

$last5 = $db->GetAll("SELECT * FROM {$tables['link']['name']} WHERE STATUS = 2 $feat_where ORDER BY ID DESC LIMIT 0,5");

here's the code for the top5 last links without the featured links
++
Tomsa