ok, i got another question on files. I have to (yet again) change our pay system to create 1 tab delimited file. This has to involve reading multiple files (depending on the store) and then grabbing the dollar amount, adding it all up, then create a new file.
I haven’t started in on it, but from the research i’ve done, i know i’ll have to open each file, read each line into a string, then explode each line so i can work with each value. Also need a way to convert strings into numbers (though i think there’s already post in here on that subject), since you can’t add strings together (or can you?).
I’ve never done anything like this before, i’m hoping someone can point me in the right direction on how to accomplish this.