explode help needed
[solved, thanks to
darac]
Me again! And i may be back for more help later too! hehe
Anyways, i need some help with the explode function in php.
If i have an Array of words, how do i display that array and have commas inbetween each word?
From:
How do i get it to display onscreen as:
one, two, three, four five six
The important thing is to *not* have a comma at the very end.
thanks in advance! :)
Paul
Me again! And i may be back for more help later too! hehe
Anyways, i need some help with the explode function in php.
If i have an Array of words, how do i display that array and have commas inbetween each word?
From:
Array (
[0] => one
[1] => two
[2] => three
[3] => four five six
) How do i get it to display onscreen as:
one, two, three, four five six
The important thing is to *not* have a comma at the very end.
thanks in advance! :)
Paul
