I am having 2 tables
Try1 (ID and ValueA )
and
try2 (ID and valueb)
In table Try1 ID is the Auto increment and Primary key, I somehow want to link this TRY1.ID to try2.ID so that when i insert into try1 (valueA)=XXX then the ID that is autogenerated is also reflected in Try2
( Is the solution related to create a foreign key based on the 1st ?)
I am using PHPMYADMIN and php to insert querys. Any possible way would be helpful, Thanks