Quote:
Originally Posted by ShadyB
One more thing... How can I get it to say something like Welcome Back "username" when its is in the
PHP Code:
<?php
if ($vbulletin->userinfo['usergroupid'] == '6' )
{
echo"
Tag? It doesnt seem to work for me..
Also, when designing it in Dreamweaver, everything disappears from the design view.. Is that because it is restricted to a usergroup and Dreamweaver cannot access it?
|
PHP Code:
if ($vbulletin->userinfo['usergroupid'] == '6' )
{
echo "Welcome Back, <b>";
echo $vbulletin->userinfo['username'];
echo " !</b><br />";
}
As for Dreamweaver, I think you will need to use it in code view for this part.