Jump to content

[SOLVED] Simple for you Hard for me. Is there a better way to append each array value?


Just_Johnny

Recommended Posts

My array looks like this. 

    [0] => Value 1
    [1] => Value 2
    [2] => Value 3
    [3] => Value 4
    [4] => Value 5

The first two are simple.

$This = $array[0];    
$That = $array[1];  

No problem so far

 

For $array[2] and up. I want it to append the next value.  so...

$These = $array[2]." ".$array[3]." ".$array[4];

The problem is the array doesn't always end at 4.  This is what I've done, but I know there is an better way. 

                  $model = $Array[2]
	." ".$Array[3]
	." ".$Array[4]
	." ".$Array[5]
	." ".$Array[6]
	." ".$Array[7]		
	." ".$Array[8]		
	." ".$Array[9];

 

Sorry, I know this is super simple stuff than what you guy are used to at this forum. 

 

Thanks in advance!  ;D

 

 

 

 

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.