I have an array with the range 1-100.
I also have an array fetched from mysql, with the values :
NUMBER----VALUE
3-------------8
4-------------3
26-----------1
67-----------2
I want to insert the later array into the first array, creating something like:
NUMBER-----VALUE
1--------------0
2--------------0
3--------------8
4--------------3
5--------------0
etc..
(in other words filling up the "blank" numbers.)
Is this possible?