Skip to content
Advertisement

Insert a php string as multiple rows on MySQL table

I have a table with more than 750 rows of data that I paste on a textarea and get as a single string variable, then I pass the data as just one string thru an ajax and I want to insert it on my database in just one INSER INTO line

JavaScript

Is there a way to make this work, I was able to insert the data on the database one value at a time, but is taking to long Any ideas?

Advertisement

Answer

Multiple rows statement format:

JavaScript

You’re using newlines to determine when there should be enclosing parenthesis for the record data. Separate it with a comma, per the format above.

JavaScript

Since your $data now consists of many records, each one inside enclosing parenthesis and separated by commas, you don’t need to repeat the enclosing parenthesis when you construct your SQL query.

JavaScript

My preferred method to debug would be to print out the $sql statement. Then copy it and run it directly against your database to see what errors it throws.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement