Ok
PHP Code:
if ($bbuserinfo['field12'])
{
// Explode the variable to it's component checkboxes.
$binstring = strrev(str_pad(decbin ($bbuserinfo['field12']),31,"0",STR_PAD_LEFT));
$bitarray = explode(":",chunk_split($binstring, 1, ":"));
// Now check the array
if ($bitarray['0']) // Show Thread Previews
{
$show['preview'] = false;
}
if ($bitarray['1']) // Post Icons switch
{
$show['posticons'] = false;
}
if ($bitarray['2']) // Forum Icons Switch
{
$show['forumicon'] = false;
}
if ($bitarray['3']) // New Threads in Bold
{
$show['new_bold'] = true;
}
if ($bitarray['4']) // Show Signatures only once / thread
{
$show['sigsonlyonce'] = true;
}
if ($bitarray['5']) // Show Big User Names
{
$show['bigusernames'] = true;
}
if ($bitarray['6']) // Show Display options at top
{
$show['displaytop'] = true;
}
unset($bitarray,$binstring);
}
To get it to work on you're own board you need to change the field refered at the start to the one appropriate to your board. It is STRONGLY recommended that you reassign the fields to $show variables because they are outputted in the order they are displayed. If you change that order you'll have to change this script - making direct linking of $bitarray to your templates ill advised (and to get it to work anyway you'll need to delete the unset statement);
This script will handle up to 32 checkboxes.
EDIT: This can be plugged into you PHPINCLUDE_START template.