I have 3 arrays, they all hold the same information except for one row, which changes in each of the arrays:
[cal_id] => 7
[cal_create_by] => admin
[cal_date] => 20070704
[cal_time] => 60000
[cal_duration] => 120
[cal_name] => Test Address
[cal_description] => This is whats wrong with the machine
[cal_data] => 5982462
[cal_login] => user1
[cal_lastname] => person
[cal_firstname] => one
--
[cal_id] => 7
[cal_create_by] => admin
[cal_date] => 20070704
[cal_time] => 60000
[cal_duration] => 120
[cal_name] => Test Address
[cal_description] => This is whats wrong with the machine
[cal_data] => $106. Please call 1/2 hour prior to arriving.
[cal_login] => user1
[cal_lastname] => person
[cal_firstname] => one
--
[cal_id] => 7
[cal_create_by] => admin
[cal_date] => 20070704
[cal_time] => 60000
[cal_duration] => 120
[cal_name] => Test Address
[cal_description] => This is whats wrong with the machine
[cal_data] => Map 145 - H1
[cal_login] => user1
[cal_lastname] => person
[cal_firstname] => one
How can i join these arrays so i have something like
[cal_id] => 7
[cal_create_by] => admin
[cal_date] => 20070704
[cal_time] => 60000
[cal_duration] => 120
[cal_name] => Test Address
[cal_description] => This is whats wrong with the machine
[cal_data1] => 5982462
[cal_data2] => $106. Please call 1/2 hour prior to arriving.
[cal_data3] => Map 145 - H1
[cal_login] => user1
[cal_lastname] => person
[cal_firstname] => one