PDA

View Full Version : if statement on non-vb


fearfx
03-19-2008, 05:25 PM
What would a non-vb page if statement look like if I wanted to:

If user not logged in : SHOW -> Login | Register (those are links)

if user is Logged in: SHOW -> Welcome | {$username}

Thanks for the help.

Opserty
03-19-2008, 06:22 PM
You'd have to make it into a "vB Page" How to create your own vBulletin-powered page! (uses vB templates) (https://vborg.vbsupport.ru/showthread.php?t=62164)

Or you could do this by just adding:

$cwd = getcwd();
chdir('path/to/forum');
require_once('global.php');
chdir($cwd);

if(!$vbulletin->userinfo['userid'])
{
echo 'Login | Register';
}
else
{
echo 'Welcome '. $vbulletin->userinfo['userid'];
}

King Kovifor
03-19-2008, 06:36 PM
fearfx,

If you are trying to use vBulletin, you can set up a template and use standard <if> conditionals inside templates. Just create a custom template and do normal php calls for calling a template. It should look something like this:

eval("$variable = " . fetch_template('template_name') . ";");

I believe that is it. But that method will work just as fine as the one that Opserty has provided.

fearfx
03-19-2008, 09:18 PM
You'd have to make it into a "vB Page" How to create your own vBulletin-powered page! (uses vB templates) (https://vborg.vbsupport.ru/showthread.php?t=62164)

Or you could do this by just adding:

$cwd = getcwd();
chdir('path/to/forum');
require_once('global.php');
chdir($cwd);

if(!$vbulletin->userinfo['userid'])
{
echo 'Login | Register';
}
else
{
echo 'Welcome '. $vbulletin->userinfo['userid'];
}


Thanks a million exactly what I wanted...