well, i don't know phpmyadmin, but i supose you can just put something like
create table table2 (id int(11) NOT NULL UNIQUE auto_increment,
...
id_table1 int(11) NOT NULL,
PRIMARY KEY (id),
FOREIGN KEY (id_table1)
REFERENCES table1
)
i didn't quite understand 😕 if you already have this second table created or if you couldn't create it; anyway, hope this helps
caluã