Quote:
Originally Posted by bouncer18
how would you shop the top 5 on the forum index.php page..
i figured out you need to create the templates but now i cant figure out what modifications need to be made to the index.php itself so it loads properly when $timeslips is called in the forumhome template
|
You would just need to add this code before the output to the main template (near the bottom of the file) in forums/index.php:
Code:
// Top Times add-on
$pos = 0;
$users=$DB_site->query("SELECT *
FROM user,userfield
WHERE user.userid = userfield.userid
AND userfield.field55>0
ORDER BY userfield.field55 ASC
LIMIT 5");
// Set up vars
while ($userinfo=$DB_site->fetch_array($users)) {
$pos++;
$rank= number_format($pos);
$TDusername= $userinfo[username];
$ride= $userinfo[field50];
if ($userinfo[field52]>0){
$sixty= $userinfo[field52];
}else{
$sixty="";
}
if ($userinfo[field55]>0){
$quarter= $userinfo[field55];
}else{
$quarter="";
}
if ($userinfo[field56]>0){
$atmph2="@";
}else{
$atmph2="";
}
if ($userinfo[field56]>0){
$quartermph= $userinfo[field56];
}else{
$quartermph="";
}
eval("\$times .= \"".gettemplate('times')."\";");
} // end while
eval("\$toptimes .= \"".gettemplate('toptimes')."\";");