Just a quickie, if I read through a file line-by-line putting it into an array using a while loop, and the data is like this:
ABC
DBC
ECC
I would like $array[0] to be ADE and $array[1] to be BBC etc.
Is there a way of appending to array values like this ?
I know how to use push to add to an array, but thats not what I want to do :(
I use split to put the line into $array[0], array[1] etc.
cheers