i have 1 table in phpmyadmin users
which contains below fields.
users
:
uid | name | contact.no
There can be more then one contact number for a single user.
One way to solve it is using one more table for contact number and pass its primary key to users
table.
Is there any other way other then this one.
Can we implement array structure in contact.no
field?