futrzak Wysłany: Czw 27 Lip, 2006 |
|
|
Witajcie mam pewien pomys? ot?? jeszcze na forum przema Rusek napisa? ciekawego moda
wy?wietlaj?ce liste os?b kt?re najcz?sciej pomog?y
http://www.przemo.org/php...der,asc,start,0
tylko mam taki ma?y problem nie wyswietlaj? mi sie kolory grup dla konkretnych u?ytkownik?w
czy wiecie mo?e co powinienem zmienic ?
Wydaje mi si? ?e co? ?le jest w tym fragmenciu kodu
PHP Code:<?php
function top_helpful($limit)
{
global $phpEx, $db;
{
$sql = "SELECT user_id, username, special_rank, user_posts, user_rank, user_level, user_jr FROM " . USERS_TABLE . "
WHERE (user_id <> " . ANONYMOUS . " ) AND (special_rank > 0)
ORDER BY special_rank DESC
LIMIT $limit";
}
if (!($result = $db->sql_query($sql)))
{
message_die(GENERAL_ERROR, 'Could not query forum top helpful information', $sql);
}
while( $row = $db->sql_fetchrow($result) )
{
$colored_username = color_username($row['user_level'], $row['user_jr'], $row['user_id'], $row['username']);
$row['username'] = $colored_username[0];
$top_helpful .= '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '" ' . $colored_username[1] . '>' . $row['username'] . '</a>[' . $row['special_rank'] . '], ';
}
return $top_helpful;
}
?>
z g?ry dzi?ki za odpowied?
Pozdrawiam |
|