I can't quite get the logic to create my own associative arrays:

if:

        $stuff[0]="165.33.114.63 anonymous Mozilla/4.0" 
        $stuff[1]="213.35.354.93 anonymous Mozilla/4.0"

how do I end up with:

        $stuff[0][user]="165.33.114.63"
        $stuff[0][browser]="Mozilla/4.0" 

        $stuff[1][user]="213.35.354.93"
        $stuff[1][browser]="Mozilla/4.0" 

I am hacking away at:

        foreach( $stuff as $cFile ) {
        
                list ($user, $junk, $browser) = split (' ', $cFile);
                }


and it hurts.....any hints ?

TIA,

____________________________ 
Matthew Luchak 
Webmaster
Kaydara Inc. 
[EMAIL PROTECTED]


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to