Hi guys:
I have an issue with PHP and MySQL. I've loaded data from a text file into a PHP array with the command structure:
$textFile = file($fileName);
This statement was successful, and the entire file was segmented into records (each line contained one record) and loaded into the array called $textFile.
I want to be able to load this data (in its current form as an array) into a MySQL database. The database is set up to be compatible with the incoming data.
Is it possible to load an array of "records" directly into a MySQL database?
Thanks. Any help will be greatly appreciated...
Sincerely,
Trevor...