Re: [PHP] how do i get assosciative name in foreach

2003-08-14 Thread Philip Olson
$arr = array('key' = 'value'); foreach ($arr as $k = $v) { echo $k is the name/key, $v is the value; } Regards, Philip On 8 Aug 2003, Dan Anderson wrote: I want to send an assosciative array to a foreach loop. Is there any way to get the name? For instance, now I have: ?php

[PHP] how do i get assosciative name in foreach

2003-08-10 Thread Dan Anderson
I want to send an assosciative array to a foreach loop. Is there any way to get the name? For instance, now I have: ?php $array['element1']['name'] = 'element1'; $array['element1']['value'] = 'value1'; $array['element2']['name'] = 'element2'; $array['element2']['value'] = 'value1'; foreach

Re: [PHP] how do i get assosciative name in foreach

2003-08-10 Thread CPT John W. Holmes
From: Dan Anderson [EMAIL PROTECTED] I want to do: ?php $array['element1'] = 'element1'; $array['element2'] = 'element2'; foreach ($array as $element) { // assuming get_assoc gets the assosciative name if (get_assoc($element) == 'element1') {get_assoc($element)