Re: [PHP] UNSET & Arrays

2002-06-06 Thread Jason Caldwell
I was doing something wrong... ;) I figured it out. Sorry for the post -- it was one of those things that took me *forever* to figure it out and when I saw the problem I felt like an idiot -- oh well. Thanks anyway. Jason "Jason Wong" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">ne

Re: [PHP] UNSET & Arrays

2002-06-06 Thread Jason Wong
On Friday 07 June 2002 09:04, Jason Caldwell wrote: > i'm trying to unset an array element within my array -- > > my array looks like; > > $foo[0][magazine] > $foo[0][subscription] > $foo[0][term] > $foo[0][rate] > > $foo[1][magazine] > $foo[1][subscription] > $foo[1][term] > $foo[1][rate] > > and

Re: [PHP] UNSET & Arrays

2002-06-06 Thread Jason Caldwell
that didn't work. "Mark" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... first try quoting your strings and see if that helps :) $foo[0]["magazine"] On Thu, 6 Jun 2002 18:04:47 -0700, Jason Caldwell wrote: >i'm trying to unset an array element within my array -

Re: [PHP] UNSET & Arrays

2002-06-06 Thread Mark
first try quoting your strings and see if that helps :) $foo[0]["magazine"] On Thu, 6 Jun 2002 18:04:47 -0700, Jason Caldwell wrote: >i'm trying to unset an array element within my array -- > >my array looks like; > >$foo[0][magazine] >$foo[0][subscription] >$foo[0][term] >$foo[0][rate] > >$foo[1

[PHP] UNSET & Arrays

2002-06-06 Thread Jason Caldwell
i'm trying to unset an array element within my array -- my array looks like; $foo[0][magazine] $foo[0][subscription] $foo[0][term] $foo[0][rate] $foo[1][magazine] $foo[1][subscription] $foo[1][term] $foo[1][rate] and so forth -- when i call unset($foo[0]) for example, the entire array goes aw