Skip to content
Advertisement

PHP Insert JSON to MySql Multitable

I’ve this multidimensional array to insert into mysql database :

JavaScript

This my code

JavaScript

I can’t insert “queryy” to tbl_order_product, only tbl_order table Please help me to insert ‘product’ array into tbl_order_product table too..

Advertisement

Answer

  1. Your query execution should be inside loop otherwise only last product details will be populated in both tables.
  2. Don’t use LAST_INSERT_ID() in php, instead use php function for the same.
  3. Don’t pass order_id as null and make sure it is auto incremental.
  4. Use prepared statement to prevent sql injection.

Simple update to your question to get it working(doesn’t include sql injection prevention)

JavaScript

To use prepared statement to prevent sql injection, please have a look at these.

  1. PHP MySQL Prepared Statement
  2. INSERT query using PDO
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement