PDA

View Full Version : Appending data to a variable ?


cinq
01-18-2005, 02:34 PM
The variable $store contains a string of characters ( for e.g an address ).
I wish to append more info to this variable ( say add on the postal code ), how do I go about doing this ?

I took a look at implode, but I am not sure if it does the job ?

Is there some kind of append function in PHP ?

Colin F
01-18-2005, 02:38 PM
The variable $store contains a string of characters ( for e.g an address ).
I wish to append more info to this variable ( say add on the postal code ), how do I go about doing this ?

I took a look at implode, but I am not sure if it does the job ?

Is there some kind of append function in PHP ?
If the data is a string, you can use

$store .= 'additionalinfo';

or

$store = $store . 'additionalinfo';

or

$store = $store . $adinfo;

deathemperor
01-19-2005, 03:58 AM
I took a look at implode, but I am not sure if it does the job ?
implode does nothing with this, it's used to insert something(the 1st argument) to seperate values in an array and turn it into a non-array varible.

I use '.=' to solve your question.

cinq
01-19-2005, 04:09 AM
I must have been half asleep when I posted this query lmao :)
Pls ignore. :)