Quote:
Originally Posted by The-Ensemble
Oh thank you! works! but erm the usergroup title doesn't seem to be showing up, I'll define the plugin as a script then use an if condition see if I can do it that way, thank again! and thanks to everyone else who tried to help! :up::up:
|
I don't know I think thats more a problem with your script then anything else.
Quote:
Oh another thought how could I convert this into a HTML if condition?
PHP Code:
if (in_array($_REQUEST['do'], array('contributors')))
|
Its a vB conditional not HTML
Technically it would be:
Code:
<if condition="in_array($_REQUEST['do'], array('contributors'))">
BLAH
</if>
(I think)
However it would be better to use:
Code:
<if condition="$_REQUEST['do'] == 'contributors'">
BLAH
</if>
(You could also you the code within the 'condition' attribute in your PHP code.