Forum Moderators: coopster
NOW LOOKS LIKE: (thanks to coopster):
array(6) { ["04-01"]=> int(0) ["04-02"]=> string(2) "32" ["04-03"]=> int(0) ["04-04"]=> int(0) ["04-05"]=> int(0) ["04-06"]=> int(0) }
I NEED IT TO LOOK LIKE:
array(6) { [0]=> int(0) [1]=> string(2) "32" [2]=> int(0) [3]=> int(0) [4]=> int(0) [5]=> int(0) }
REASON:
I am getting date value from a DB, and than doing an array_merge with another template to ensure that any missing month for a category get a zero in the correct sequence. Problem is that, the resulting array needs to have int index for the graphing utility to work.
TIA