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 so forth --
>
> when i call unset($foo[0]) for example, the entire array goes away, not
> just the [0] elements.
>
> how can i unset a multi-dimensional array?  i have no problems using unset
> single-dimension arrays.

You must be doing something wrong. unset($foo[0]) is correct and should work. 
If you're still having problems, post your real code.

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *

/*
The value of a program is proportional to the weight of its output.
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to