I create a CSV file with one column using PHP. I do that iteratively in a loop. What I want now is to add a second column inside this CSV. I want to that after the end of the loop. Is it possible doing this with php?
for ($number = 1; $number <= 26; $number++) {
#create CSV With one column
}
#append one more column to existing CSV