Hey bpat1434,
Thanks for the reply. After studying "list" for a bit last night, I figured it out. Actually it was pretty simple.
Here is a snippet of the previous code :
list($value)=explode("\t", $value);
All I needed to do was assign a variable to the new column in the txt file like so:
list($value, $newvalue)=explode("\t", $value);
So, I take it that you can assign more variables as well. If I am wrong, someone please let me know.
Works great!
Again, thanks for your reply, I really appreciate it!
Gregg