RE: [PHP] Re: Push an Array, Comma separated.

2009-07-01 Thread Ford, Mike
> -Original Message- > From: Louie Miranda [mailto:lmira...@gmail.com] > Sent: 01 July 2009 04:19 > To: php-general@lists.php.net > Subject: Re: [PHP] Re: Push an Array, Comma separated. > > This is what I did. And it worked. > > $saveFiles = array(); &

Re: [PHP] Re: Push an Array, Comma separated.

2009-06-30 Thread Louie Miranda
This is what I did. And it worked. $saveFiles = array(); $arrSize=sizeof($saveFiles); for ($number = 0; $number < $arrSize; $number++) { $saveFilesDump = "$saveFiles[$number], "; echo "$saveFiles[$number], "; } File1.txt, File2.txt, File3.tx

[PHP] Re: Push an Array, Comma separated.

2009-06-30 Thread Jo�o C�ndido de Souza Neto
May be array_merge($array, explode(",", $string)). -- João Cândido de Souza Neto SIENS SOLUÇÕES EM GESTÃO DE NEGÓCIOS Fone: (0XX41) 3033-3636 - JS www.siens.com.br "Louie Miranda" escreveu na mensagem news:5016fc50906300125s12389ae1v3323c63c30343...@mail.gmail.com... > GPS Administrative