I have 15 countries, for each country there are a set amount of 20 points. For each point there is a different value per country
Example
The UK in Price Point 1 has a Price Value of 1.3
The US in Price Point 1 has a Price Value of 1.5
And so on,
Should I go with the approach like this or is there a better way to do this.
I want to firstly put this into a CSV then use fgetcsv to convert it.
Array
(
[0] => Array
(
[country] => US
[price_point] => 1
[price_value] => 1.5
)
[1] => Array
(
[country] => UK
[price_point] => 1
[price_value] => 1.3
)
)