Jump to content

Merge Array Values


phpretard

Recommended Posts

I am using pieces of an array like this:

 

$data['0'];

$data['2'];

$data['3']; and so on...I think up to around $data['70'];

 

I need to take the values of $data['29'] through $data['64'] and combine them. (stumped)

 

On top of that I have to comma separate those now combined values (stumped).

 

Actuall Code:


$handle = fopen("test.csv", "r");

while (($data = fgetcsv($handle, 5000, ",")) !== FALSE){

            $needed = $data['29'] .", ". $data['30'] .", ".$data['31']; // ALL THE WAY TO $data['65']
        
         }

 

I know how to do it the long way, could someone help me shorten my work?

 

Thank you for your help.

 

Link to comment
https://forums.phpfreaks.com/topic/218410-merge-array-values/
Share on other sites

Archived

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

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.