RE: [PHP-DB] Imploding an array?

2002-11-06 Thread Peter Beckman
riginal Message- > > From: Rasmus Lerdorf [mailto:rasmus@;php.net] > > Sent: Wednesday, November 06, 2002 2:16 PM > > To: Aaron Wolski > > Cc: [EMAIL PROTECTED] > > Subject: Re: [PHP-DB] Imploding an array? > > > > > > You sure you want [$i] o

RE: [PHP-DB] Imploding an array?

2002-11-06 Thread Aaron Wolski
Ok... This is the code I have setup: for ($i=0;$i -Original Message- > From: Rasmus Lerdorf [mailto:rasmus@;php.net] > Sent: Wednesday, November 06, 2002 2:16 PM > To: Aaron Wolski > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP-DB] Imploding an array? > > > You su

RE: [PHP-DB] Imploding an array?

2002-11-06 Thread Josh Johnson
Does $i have a value? -- Josh -Original Message- From: Rasmus Lerdorf [mailto:rasmus@;php.net] Sent: Wednesday, November 06, 2002 2:16 PM To: Aaron Wolski Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Imploding an array? You sure you want [$i] on that? Is it a 2-dimensional array? On

Re: [PHP-DB] Imploding an array?

2002-11-06 Thread Jeffrey_N_Dyke
ron Wolski" kbiz.com>cc: Subject: [PHP-DB]

Re: [PHP-DB] Imploding an array?

2002-11-06 Thread Rasmus Lerdorf
You sure you want [$i] on that? Is it a 2-dimensional array? On Wed, 6 Nov 2002, Aaron Wolski wrote: > Hey all, > > Can't seem to figure out why this won't work: > > $test = implode(",", $order_index[$i]); > > When I print_r() the variable I have values so I know that works. > > Any thoughts on

[PHP-DB] Imploding an array?

2002-11-06 Thread Aaron Wolski
Hey all, Can't seem to figure out why this won't work: $test = implode(",", $order_index[$i]); When I print_r() the variable I have values so I know that works. Any thoughts on this? Thanks. Aaron