Jump to content

Problem INSERTing into table


dbewick123

Recommended Posts

HI, Im trying to insert into a table then return the last id then INSERT to another table using this id... here is the code, hopefully it makes more sense 

 

   mysql_query("INSERT INTO `books` ($fields1) VALUES ($data1)"); // query to insert the book     //data //into the database

               $lastId = mysql_insert_id();

 mysql_query("INSERT INTO `userBooks` `user_id`,`book_id` VALUES '$sessionUserId', '$lastId'");

 

Just to note the first query works perfectly, also user_id and book_id in the userBooks tables are foreign keys but that shouldnt make a difference. Please someone help.

Thanks in advance

Dbewick123

Link to comment
https://forums.phpfreaks.com/topic/275600-problem-inserting-into-table/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.