i can make this for you if you'd like.
Well, we've got multiple options:
A: users enters password putting them in a certain usergroup
B: user enters password putting them in a special table, so there doesn't have to be a usergroup
C: user picks there group on singup from a combo box
And yes, you can make it be edited from the user cp.
Pick one, and i'll get to work.
One more thing:
You should do this:
PHP Code:
$userfieldsfetch=$DB_site->query_first("SELECT * FROM userfield WHERE userid='$u'");
$userfields=$DB_site->fetch_array($userfieldsfetch);
Instead of what you have. Without fetching the array, i'm not sure if it would work correctly =)