tags:

views:

48

answers:

1

I have an array of delimited values that I want to show the user such as:

[delimCC] => Array
    (
        [0] => 3;
        [1] => 4;
        [2] => 5;
    )

WHat I need, is: 3;4;5 (a string). How can I take the output of this array and make it a string?

Thanks!

+5  A: 

You can use the implode function:

implode(';', $delimCC);
CMS
Thanks sir! :)
You're welcome!
CMS