So I would like to use a CSV file as a array.
This is part of the huge CSV file I have.
1-1,Poh,ਪੋਹ,19
1-2,Poh,ਪੋਹ,20
1-3,Poh,ਪੋਹ,21
1-4,Poh,ਪੋਹ,22
1-5,Poh,ਪੋਹ,23
1-6,Poh,ਪੋਹ,24
So in PHP, I would call for 1-4. How can I call 1-4, and then get the output of the 3 values after it, in this case it is Poh,ਪੋਹ,22.
Then I make it so $1 = Poh, $2 = ਪੋਹ, $3 = 22.
How would I go doing this?