[Solved] Is it possible to insert multiple queries in mysql using php [closed]
if you mean bulk insert, please follow the example given below. CREATE TABLE example ( example_id INT NOT NULL, name VARCHAR( 50 ) NOT NULL, value VARCHAR( 50 ) NOT NULL, other_value VARCHAR( 50 ) NOT NULL ) INSERT INTO example VALUES (100, ‘Name 1’, ‘Value 1’, ‘Other 1’), (101, ‘Name 2’, ‘Value 2’, ‘Other … Read more