I could not find any documentation on this so I'll ask here if its even possible.
Say you have an array with keys 1-12 values are null so far. And then you have another array with the values array(1,3,7,8,10,11); How do you make another array to look like:
array(
[1] = '1',
[2] = ' ',
[3] = '3',
[4] = ' ',
[5] = ' ',
[6] = ' ',
[7] = '7',
[8] = '8',
[9] = ' ',
[10] = '10',
[11] = '11',
[12] = '',
)
Regards,
Say you have an array with keys 1-12 values are null so far. And then you have another array with the values array(1,3,7,8,10,11); How do you make another array to look like:
array(
[1] = '1',
[2] = ' ',
[3] = '3',
[4] = ' ',
[5] = ' ',
[6] = ' ',
[7] = '7',
[8] = '8',
[9] = ' ',
[10] = '10',
[11] = '11',
[12] = '',
)
Regards,