Quote:
Originally Posted by MrSeth
How can i code it so that only user that are not logged in will see a message like
"You must be logged in to post pictures"[/B]
|
You could do this:
Code:
<vb:if condition="$bbuserinfo[userid] != 0">
// upload form code goes here
<vb:else />
You must be logged in to post pictures.
</vb:if>
I don't think there is any complete documentation of things you can check in 'if' conditions. While there are some that are generally useful (like the $bbuserinfo array), you pretty much have to refer to the vb code to know exactly what you can do.