We have an admin panel which uses php to insert rows into a mysql db but we can only insert one row at a time. We have hundreds of teachers who create hundreds of sentences and answers per week. How can we do a batch insert ie: They would create sentences in a spreadsheet or a c# utility and then would need to "upload" those sentences into mysql db. Not too sure how do do it and would welcome info. Thanks.
Link found in stackoverflow Batch insertion of data to MySQL database using php
OK so I load a text file via php or I can use code in php which loops through each row and inserts it in the db.
So my question is if c# can do this and if not... 1. Each teacher copies and pastes their rows from their spreadhseet into a utility. 2. Export to a file that can then be uploaded to my db using php.