Topic: pun_guest

what is the coding to show something only to a guest, and if a member is logged in, they will see something else??

thanks

Sorry. Unactive due to personal life.

Re: pun_guest

if ($pun_user['is_guest'])
{
// guest stuff
}
else
{
// user stuff
}