vb.org Archive
>
vBulletin 3 Discussion
>
vB3 Programming Discussions
> How would I show this code on non-vb?
PDA
View Full Version :
How would I show this code on non-vb?
fearfx
03-20-2008, 12:58 AM
<if condition="$vboptions['pmembers_enable']">
<br />
$vbphrase[pmembers_p]: $pmembers
</if>
Dismounted
03-20-2008, 10:13 AM
if ($vbulletin->options['pmembers_enable'])
{
echo '<br />' . $vbphrase['pmembers_p'] . ': ' . $pmembers;
}
Make sure you include the vBulletin backend first.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.