okay - i put
Code:
$stylesetlist = "";
if ($allowchangestyles==1) {
$stylesets=$DB_site->query("SELECT * FROM style WHERE userselect=1 ORDER BY title");
if ( !isset($bbuserinfo['realstyleid']) ) {
$bbuserinfo['realstyleid'] = $bbuserinfo['styleid'];
}
while($thisset=$DB_site->fetch_array($stylesets)) {
if ($bbuserinfo['realstyleid']==$thisset['styleid']) {
$selected = "selected";
} else {
$selected = "";
}
$thisid = $thisset['styleid'];
$thisstylename = $thisset['title'];
eval ("\$stylesetlist .= \"".gettemplate("usercp_styleset")."\";");
eval ("\$stylecell = \"".gettemplate("usercp_stylecell")."\";");
}
} else {
$stylecell = "";
}
into index.php after
Code:
$numbersmembers=$DB_site->query_first('SELECT COUNT(*) AS users,MAX(userid) AS max FROM user');
$numbermembers=number_format($numbersmembers['users']);
it now shows in welcome panel a pull down with currently "defualt " in it
will this be okay where i posted the code ? or is there a better place i could - also, will this, if someon chooses another style - kep that style permanently, or only as long as that session?