I keep getting lost when I look up how to program with MySQL/PHPAdmin in PHP
what I'm trying to make is a contact list that will be stored in MySQL that each user have their own list... I'm new to MySQL what I'm having problems is the structure of how it should be formed in MySQL.. example
user1 ID
user1 bio
user1 email
user1 contacts
user1_contact1 (name, contact bio, contact email)
user1_contact2 (name, contact bio, contact email)
user1_contact3 (name, contact bio, contact email)
user2 ID
user2 bio
user2 email
user2 contacts
user2_contact1 (name, contact bio, contact email)
user2_contact2 (name, contact bio, contact email)
user2_contact3 (name, contact bio, contact email)
so when user1 signs in they see user1 data and user1 contacts and when user2 signs in they see user2 data and user2 contacts
to me it looks like contacts should be a table but what I keep getting confused on is how to make it a user defined table for each user and how the structure should be in PHPMyAdmin
user contacts con be anything like 5 contacts to 5000 contacts.
if there is a better way that I'm missing let me know.