[Solved] How can I insert multiple li items each in a different row in mysql with a single click (jQuery, PHP, SQL) [closed]
[ad_1] You can insert many values into SQL with a single command (though not recommend, use PDO), such as INSERT INTO MyTable ( Column1, Column2 ) VALUES ( Value1, Value2 ), ( Value1, Value2 ) If using jQuery, you can use $.post() to send data to your web server (PHP). Here’s an example: var items … Read more