I need to convert an array in this format:
Array (
[size] => P
[code] => Array (
[0] => C01
[1] => B01
[2] = A02
)
)
to multiple ones like this:
Array ( [size] => P [code] => C01 )
Array ( [size] => P [code] => B01 )
Array ( [size] => P [code] => A02 )
How would I do that using php code?