TinyPortal
Development => Block Codes => Topic started by: NIBOGO on March 10, 2010, 02:41:22 AM
This is a block to show the recent groups in the SMF Social Groups Mod (http://www.smfpacks.com/index.php?action=page;sa=sg):
Create a new php block and add this content:
SMF 2.0:
global $smcFunc, $scripturl;
echo'Recent Groups:<br />';
$dbresult = $smcFunc['db_query']('', '
SELECT id_group, group_name, image
FROM {db_prefix}social_groups
ORDER BY id_group DESC
LIMIT 5');
while ($row = $smcFunc['db_fetch_assoc']($dbresult))
{
echo'<a href="'.$scripturl.'?action=sgroups;sa=view;id='.$row['id_group'].'"><img src="'.$row['image'].'" alt="'.$row['group_name'].'" /></a>';
}
$smcFunc['db_free_result']($dbresult);
SMF 1.1.X:
global $db_prefix, $scripturl;
echo 'Recent Groups:<br />';
$dbresult = db_query('
SELECT ID_GROUP, groupName, image
FROM {$db_prefix}social_groups
ORDER BY ID_GROUP DESC
LIMIT 5', __FILE__, __LINE__);
while ($row = mysql_fetch_assoc($dbresult))
{
echo'<a href="'.$scripturl.'?action=sgroups;sa=view;id='.$row['ID_GROUP'].'"><img src="'.$row['image'].'" alt="'.$row['groupName'].'" /></a>';
}
mysql_free_result($dbresult);
Best Regards
Nice one Nibogo O0
SMF 1.1.X version added
is there afree version of that mode ?