if/else anywhere
I have been messing with an if/else statement.
I have made a .php with:
<?php
require("http://www.teambuick.com/forums/global.php");
?>
and am trying to make something like this work:
<?php
if condition="is_member_of($bbuserinfo,5,6,7,9,10,13) " {
?>
This is for a member<br>
<?php
} else {
?>
This is for a guest<br>
<?php
}
?>
I would like it to function in any directory on my site. Is it easy and am I just missing something simple?
Thanks!
|