showing 'featured member' on profile

hi, how could i get to show that that the member is featured if you look at there profile? i need a little block with it saying 'featured member' on it, so other members can see it.

thanks

You Creature!!
Quote · 7 Apr 2011

can someone tell me how this is possible please!!

You Creature!!
Quote · 8 Apr 2011

Use a PHP block and add code like this


Caption Lang Key: _Profile Info

PHP-Content:

global $p_arr;
$Memb = (int)$p_arr['ID'];

$arr = db_arr("SELECT `Featured` FROM `Profiles` WHERE `ID` = '$Memb'");

$MemFeatured = $arr['Featured'];

if ( $MemFeatured > 0 )
{
echo "
<div align=\"center\">
<font color=\"#006A00\" size=\"5\"><b>Featured Member</b></font>
</div>
";
}

Quote · 8 Apr 2011

 

Use a PHP block and add code like this


Caption Lang Key: _Profile Info

PHP-Content:

global $p_arr;
$Memb = (int)$p_arr['ID'];

$arr = db_arr("SELECT `Featured` FROM `Profiles` WHERE `ID` = '$Memb'");

$MemFeatured = $arr['Featured'];

if ( $MemFeatured > 0 )
{
echo "
<div align=\"center\">
<font color=\"#006A00\" size=\"5\"><b>Featured Member</b></font>
</div>
";
}

 

 

okweb your the man!!!! thanks mate :)

You Creature!!
Quote · 9 Apr 2011
 
 
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.