I have a problem and i'm not sure how to fix it.
It's quite different from anything I have done before.
I got this array:
array (
'DayTime_s' => '12:38',
'MATCHTIMEOUT_f' => '120.000000',
'MOD0_s' => '746138492',
'MOD1_s' => '841244723',
'MOD2_s' => '741155722',
'MOD3_s' => '748747466',
'ModId_l' => '0',
'Networking_i' => '1',
'NUMOPENPUBCONN' => '40',
)
The size of the array is different from one array to the next. What I need is a new array, containing all "MOD?_s" entries above (with values). But the number of "mods" is different from one array to another. The numbers always increment by one though, starting from 0 (0,1,2,3,4 etc.)
How should I handle this task?
, Kenneth