Hi,
Table users
User_id, username, display_name, date_of_birth, email, telephone, website
On some social networking sites, I can control who can view my email, date_of_birth or display_name, for example, friends can view my email but not guests etc. If I have to offer something similar on my website where users can contol email, telephone, display name (or other fields) and allow it to all, or to members only, then what sort of data table structure I need to store this information.
I was thinking to add fields like .. email_public_access (0,1), email_members_access(0,1) for each column I need control over!!
Any other ideas?