Posted by Geoff Berrow on 01/12/07 05:40
Message-ID: <1168576947.763566.314530@q2g2000cwa.googlegroups.com> from
alkalsa@gmail.com contained the following:
>$array[0] = "blue"
>$array[1] = "green"
>$array[2] = "red"
>$array[3] = "yellow"
>$array[4] = "orange"
>
>I want to convert $array, to $string. It shouldn't be an array inside
>$string, and should by default look like this:
>
>print $string
>
>results in
>
>bluegreenredyelloworange
$string=implode("",$array);
--
Geoff Berrow 0110001001101100010000000110
001101101011011001000110111101100111001011
100110001101101111001011100111010101101011
[Back to original message]
|