2015-09-17, 09:39 PM
hello,
i have this code:
we can make, the guest show the message and the another groups (2,3,4,6) not?
thank you very much for answer.
i have this code:
function board_messages()
{
global $db, $templates, $board_messages, $current_page;
$board_messages = '';
$query = $db->simple_select('board_messages', '*', "enabled='1'");
while($message = $db->fetch_array($query))
{
if($message['global'] != 0 || $current_page == 'index.php')
{
if(!$message['class'])
{
$message['class'] = 'board_message';
}
$board_messages .= '<div class="'.$message['class'].'">'.$message['message'].'</div>';
}
}
}
we can make, the guest show the message and the another groups (2,3,4,6) not?
thank you very much for answer.