Quote:
Originally Posted by infernow
<?php
If ($vbulletin->userinfo['userid']!=0)
{
echo "Your logged in so we can display this";
} else {
echo "Your not logged in so we display this";
}
?>
How would you go about displaying an html page in there?? if there logged in.
|
Change that to:
Code:
<?php
If ($vbulletin->userinfo['userid']!=0)
{
?>
insert logged in html code here
<?php
} else {
?>
insert not logged in html code here
<?php
}
?>