I have a problem in php code inserting values into database (I use PHPMyAdmin).
My DATABASE has 3 tables:
Member
with this fields: MemberID, MemberNameRoom
with this fields: RoomID, RoomNameJoin
with this fields: MemberID, RoomID
The idea is to join the member in the room.
My query was
mysql_query("INSERT INTO join (RoomID, MemberID) VALUES ('121', '131')");
but unfortunately it does not work.