[PHP] another Array question

2012-09-10 Thread admin
Hello everyone, I have a very long array. I want to pull all the data from the array from a certain position to a certain position. $myarray = array('0'='me', '1'='you','2'='her','3'='him','4'='them', '5'='us'); Yes I know the array above it small it's an example, mine has over 150

Re: [PHP] another Array question

2012-09-10 Thread Jim Lucas
On 9/10/2012 9:41 PM, admin wrote: Hello everyone, I have a very long array. I want to pull all the data from the array from a certain position to a certain position. $myarray = array('0'='me', '1'='you','2'='her','3'='him','4'='them', '5'='us'); Yes I know the array above it small it's

RE: [PHP] another Array question

2012-09-10 Thread admin
Length was my problem the whole time. Thank you very much. Resolved -Original Message- From: Jim Lucas [mailto:li...@cmsws.com] Sent: Tuesday, September 11, 2012 1:02 AM To: admin Cc: php-general@lists.php.net Subject: Re: [PHP] another Array question On 9/10/2012 9:41 PM, admin