Well, if it is not a huge text file, you can read it into an array. Each line would be a different entry in the array.
Then, loop thru each array entry and parse each line. You can separate the values by splitting values in each
line into “key” and “value” and then use the results. To do this, you would use the “explode” command.
Not too hard to do.
Something like: $parms=explode("=",$line) which would put left of “=” into $parms[0] and the stuff on the right side of “=” into $parms[1] … Where $line is the full line you got from the file!
You could do this in just a few lines…
1) read entire file into a variable
2) parse the entire file into an array of lines (Hint: use explode and explode on $VBCRLF)
3) loop thru and parse each line into your array of data
Hope all that makes sense! Good luck…