Making use of the User Profile field Multiple Checkboxes
Ok, I set up a user profile field with multiple check boxes so I could group several display toggles together. I figured it would be stored as an array..
Well, it's not. It's binary.
I haven't dealt with binary conversions since I had a C=64. Specifically I need to extract a single bit and the evaluate it as true(1) or false (0)
I see a decbin function that will return the number as a binary string. The problem then is how to convert the string into an array??
::scratches head::
|