I have written a script to generate strings. I was wondering if it was possible to store the strings into a mysql database without having to insert each row individually, as this would require thousands of queries, which is not ideal.... My first thought was using arrays, and then storing the array to a database. After doing some research on this however, it would seem that it is difficult to store an array into a database such that the data is searchable afterwards, unless of course one used a loop to retrieve each element from the array, and then store it, but that then requires thousands of queries again....
Any help would be greatly appreciated.