Jump to content

Array Merging


chasethemetal

Recommended Posts

I have two arrays.

Array(	[0] => Array		(			[0] => 04/13/2012		) 	[1] => Array		(			[0] => 04/14/2012		)) AND Array(	[0] => Array		(			[0] => 0			[1] => 0		) 	[1] => Array		(			[0] => 1			[1] => 0		)) 

How can I merge the data so it will look like this...

Array(	[0] => Array		(  			[0] => 04/13/2012			[1] => 0			[2] => 0		) 	[1] => Array		(			[0] => 04/14/2012			[1] => 1			[2] => 0		))

Thankss any help is always appreciated!

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...