Re: [PHP] Arrays: Please help before I go insane?

2002-06-06 Thread Chris Boget
Now, what I'm trying to do is build a tree based on the data in the DB. It's working relatively ok if I uncomment the code that is on line 48 and comment out line 49. However, what I really want to do is build a fully associative array doing this and now** an array that has string keys

RE: [PHP] Arrays: Please help before I go insane?

2002-06-06 Thread Scott Hurring
] Arrays: Please help before I go insane? Now, what I'm trying to do is build a tree based on the data in the DB. It's working relatively ok if I uncomment the code that is on line 48 and comment out line 49. However, what I really want to do is build a fully associative array

Re: [PHP] Arrays: Please help before I go insane?

2002-06-06 Thread Chris Boget
Try: $ary[this] = array(that = 1); That works great until this has 2 children. The second child overwrites the first. :( Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Arrays: Please help before I go insane?

2002-06-06 Thread Scott Hurring
Systems Programmer EAC Corporation [EMAIL PROTECTED] Voice: 201-462-2149 Fax: 201-288-1515 -Original Message- From: Chris Boget [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 3:43 PM To: Scott Hurring Cc: PHP General Subject: Re: [PHP] Arrays: Please help before I go insane

[PHP] Possible bug? (was Re: [PHP] Arrays: Please help before I go insane?)

2002-06-06 Thread Chris Boget
In that case, split it up into two-steps, to only init the array if you need to i'm not really sure how the rest of your code is -- you could probably do this a nicer way, but this will work: if (!is_array($ary[this])) $ary[this] = array(); $ary[this][that] = 1; This is all well and

[PHP] RE: Possible bug? (was Re: [PHP] Arrays: Please help before I go insane?)

2002-06-06 Thread Scott Hurring
4:43 PM To: Scott Hurring; Php-General (E-mail) Subject: Possible bug? (was Re: [PHP] Arrays: Please help before I go insane?) In that case, split it up into two-steps, to only init the array if you need to i'm not really sure how the rest of your code is -- you could probably do