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

 

 

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.