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" 

what about :
$stuff[0] = array('user' => '156.33.114.63', 'browser' => 'Mozilla/4.0');
and so on....


--
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