I've created two simple tables in phpmyadmin. A list of "content creators" and a list of "content creator types". Each "content creator" can have multiple "content creator types" associated with them so this is a one-many relationship. In phpmyadmin I created the following relationship.
ALTER TABLE `contentcreator` ADD FOREIGN KEY ( `ContCreat_TypeID` ) REFERENCES `MyDatabase`.`contentcreator_types` (`ContCreat_TypeID`) ON DELETE RESTRICT ON UPDATE RESTRICT ; Now when I try to insert data (using the insert data interface in phpmyadmin) into the table "content creator" - I get a drop down to allow me to choose one of "content creator type IDs". However I want to be able to add multiple "content creator type IDs" to each content creator. How do I do this within phpmyadmin using the insert data interface?