How to use getMemberThumbnail?

When I use getMemberThumbnail() function, It will shows only one thumbnail.

But I wanna display all member thumbnails which is in 'Active' status in the 'Profiles' Table.

Is it possible? If yes means how can do?

Quote · 7 Aug 2013

 You will need to use a loop structure to fetch all the records. I am not sure exactly how you intend to display them so I am just showing an example of the loop below :

$res = db_res("SELECT `ID` FROM `Profiles` WHERE `Status`='Active'");

while($arr = mysql_fetch_array($res) ) {

$sEachThumb = $GLOBALS['oFunctions']->getMemberThumbnail($arr['ID'], 'left'); 

}

When I use getMemberThumbnail() function, It will shows only one thumbnail.

But I wanna display all member thumbnails which is in 'Active' status in the 'Profiles' Table.

Is it possible? If yes means how can do?

 

Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz
Quote · 7 Aug 2013

Thanks Modzzz...Smile

It shows all the members which is in Active. Here how can I set Pagination?

Quote · 8 Aug 2013
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.