I've got a flat-file database of users I'd like to convert into a more convenient format. Right now, I've got around 3900 users, all in seperate files in a directory... that's 3900 files... and I'd like to figure out a way to organize the whole thing into one file, and be able to access it, add, modify entries.
Trouble is, I don't have a database set-up on my web host. Are there any libraries out there, or built-in PHP modules that could allow me to work with a large ASCII text file, either comma, tab, or line delimited that wouldn't require a lot of server load to parse the thing every time?
Thanks in advance!
-g