PDA

View Full Version : If statements with vbulletin


LuvWii
10-06-2006, 09:30 PM
Ok for example this in php would be:


<?php

if($show["member"]) {

echo "member";

}

else

{

echo "guest";

}

?>


Whats the vbulletin one?

I know

<if condition="$show['member']">
bla
</if>
then what would be the else tags.

Thanks!

sebbe
10-06-2006, 09:39 PM
<if condition="$show['member']">
bla
<else />
bla
</if>

:)

LuvWii
10-06-2006, 09:43 PM
Thanks, i worked that out, now the logged in vars are not working :@

So what are the variable for logged in?

EDIT: Never mind it was the hack that wasnt interpreting it!

vietkieu_cz
10-10-2006, 01:59 PM
What if this usergroup is "Users Awaiting Email Confirmation" or "Administrator" ???

I've tried
<if condition="$show['usersawaitingemailconfirmation']">
bla
<else />
bla
</if>
but it doesn't work

Reeve of shinra
10-10-2006, 02:17 PM
Psionic Vision did a good job of explaining this here:
https://vborg.vbsupport.ru/showthread.php?t=98009

scroll down about half way to
"Certain Usergroups Only (In this example, 6 and 7)"

vietkieu_cz
10-10-2006, 04:25 PM
oh thank you, i found it