On Monday 22 July 2002 14:56, [EMAIL PROTECTED] wrote:
> I have a string that is separated by spaces like this
> $string="test test1 test2 test3";
> how can I make the string so it is separated by comas like this
> $string="test,test1,test2,test3";
> I know this is probably simple but I just can't
$string = str_replace(" ", ",", $string);
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 22, 2002 4:57 PM
To: php-general
Subject: [PHP] separated string by comas
I have a string that is separated by spaces like this
$string="test test1 test2 t
2 matches
Mail list logo