Re: [PHP] split() - not working in this case

2002-09-08 Thread N. Pari Purna Chand
: "N. Pari Purna Chand" <[EMAIL PROTECTED]> Sent: Sunday, September 08, 2002 2:33 PM Subject: Re: [PHP] split() - not working in this case > On Sun, 8 Sep 2002, N. Pari Purna Chand wrote: > > > $to = " abcd <[EMAIL PROTECTED]>, efgh <[EMAIL PROTECTED]&g

Re: [PHP] split() - not working in this case

2002-09-08 Thread Chris Wesley
On Sun, 8 Sep 2002, N. Pari Purna Chand wrote: > $to = " abcd <[EMAIL PROTECTED]>, efgh <[EMAIL PROTECTED]>" ; > Now split() in the following function*** is notworking as needed. > ie, I'm getting > $tos[0] = "abcd"; > $tos[1] = "efgh"; split didn't do anything wrong. use your browser's "view

Re: [PHP] split() - not working in this case

2002-09-08 Thread Bas Jobsen
, efgh <[EMAIL PROTECTED]>"; $tos=split_addresses($to); echo $tos[1]; ?> echos efgh <[EMAIL PROTECTED]> ?? Whats the problem? Maybe you output to a browser and don't see <[EMAIL PROTECTED]> cause its between <> Op zondag 08 september 2002 10:17, schreef N. Pari Purna Chand: > I have a string

[PHP] split() - not working in this case

2002-09-08 Thread N. Pari Purna Chand
I have a string $to = " abcd <[EMAIL PROTECTED]>, efgh <[EMAIL PROTECTED]>" ; I want a function returning an array of indivial names+mailids like from the $to seperated by "," something like $tos[0] = "abcd <[EMAIL PROTECTED]>"; $tos[1] = "efgh <[EMAIL PROTECTED]>"; Now split() in the followin