I have a database with one table with two columns (name , phone) , I want to create an one to many relationship so that the same person could have many links or emails , I know SQL & PDO and PHP .
For example someone called John and his number is 78747384323 , The same person has many links , So when I click his name in the database I see all his links .
The same person may be inserted more than one time to the database with the same name and number but with different link ,
How to achieve that ? So when I insert him for the first time with name and phone and one link , the name and number are added to the first table but the link to the second table , and when the same person be inserted again with the same name and number with another link , The link is added to his previous links.