A community of PHP developers offering assistance, advice, discussion, and friendship.
Skip to content
Moderator: General Moderators
Post by tecktalkcm0391 » Sun Jun 10, 2007 1:52 pm
Code: Select all
$array[] = 'this'; $array[] = 'is'; $array[]= 'together'; // I want to output just like this: // this is together.
Post by Benjamin » Sun Jun 10, 2007 2:12 pm
echo implode(' ', $array);
Post by impulse() » Sun Jun 10, 2007 2:29 pm
Return to “PHP - Code”