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?
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? |
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 |
Thanks Modzzz... It shows all the members which is in Active. Here how can I set Pagination? |