Hi, I need some help with the following problem: I wanna add multiple information from a form if the checkbox is checked, for example: form ------------- checkbox input name input title input user input desc ------------- checkbox input name input title input user input desc ------------- checkbox input name input title input user input desc ------------- checkbox input name input title input user input desc ------------- end form If the checkbox is checked I need to have value like: INSERT INTO test VALUES(NULL, 'name1', 'title1', 'user1', 'desc1'); INSERT INTO test VALUES(NULL, 'name2', 'title2', 'user2', 'desc2'); INSERT INTO test VALUES(NULL, 'name3', 'title3', 'user3', 'desc3'); Who can help me with this one?
INSERT INTO test VALUES(NULL, 'name1', 'title1', 'user1', 'desc1'), (NULL, 'name2', 'title2', 'user2', 'desc2'), (NULL, 'name3', 'title3', 'user3', 'desc3'); Code (markup):