Hello!
I am new in PHP!
Sample:
TABLE A
A_ID = int, auto inc First = Varchar(30)
TABLE B
B_ID = int, auto inc A_ID = int Lastname=varhcar(30)
can i input a record in table A? that automatilcally insert the A_ID value to table B, A_ID?
thanks! 🙁
Hi, i'm used to put a record in table A with an insert, then i retrive the last inserted id with mysql_insert_id() and i put it in the table B...
I hope this help you.
Thank you!