Don't forget that you should clear out that memory space, especially if it's an array of arrays or an array of objects or something along those lines:
unset($bigarray); Just good programming practice, that's all. I doubt it would ever be a problem on today's servers, but it's still a good idea. Mike "Mark" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... $smallarray1=array_slice($bigarray,0,3); $smallarray2=array_slice($bigarray,3,3); On Wed, 31 Oct 2001 23:25:55 -0800, Daniel Harik wrote: >Want to split it in half > >1 Big array: > >1 >2 >3 >4 >5 >6 > >Want to make > > >1 Small array: > >1 >2 >3 > >2 Small array: >4 >5 >6 > >Thank You > > -- Mark, [EMAIL PROTECTED] on 10/31/2001 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]