View Single Post
  #19  
Old 04-20-2012, 10:49 PM
SilverDragonTears's Avatar
SilverDragonTears SilverDragonTears is offline
I am your Nemesis.
 
Join Date: Jun 2011
Posts: 1,113
Gender: Female
Credits: 117,678
SilverDragonTears is on a distinguished road
Default

Show me it again... what you have now?

I have this and it works
Code:
$stmt = $adopts->select("users", array(), "1 ORDER BY uid ASC LIMIT {$pagination->getLimit()},{$rowsperpage}");	
	while ($row = $stmt->fetchObject()){
		$status = cancp($row->usergroup);
        $star = ($status == "yes")?"<img src='templates/icons/star.gif' border=0' /> ":"";
		$article_content .= "<strong><a href='http://taleofdragons.net/forum/member.php?action=profile&uid={$row->uid}'>{$star}{$row->username}</a></strong><br />";
	}
__________________

Check out SilvaTales

Last edited by SilverDragonTears; 04-20-2012 at 10:51 PM.
Reply With Quote