Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Just trying to get the name of an assoc array;

$test = array('selected' =>$selected, 'sectionList'=>$sectionList, 'categoryList'=>$categoryList);
<? foreach($test as $list) { ?>
<h3><?=$list?>, <?=$list[id]?>, <?=$list['name']?>, <?=$list['value']?></h3>
<? } ?>

but either get 'Array' or nothing?! I can see the name when i print_r($test);

Do you think this is possible? Thanks in advance, D.

share|improve this question

3 Answers

up vote 3 down vote accepted

Use the syntax foreach ($array as $key => $value) to also get the key when iterating an array.

share|improve this answer
thankyou! new it was something simple. best, Dan. – daniel Crabbe Jun 1 '10 at 16:55

try using :

foreach ( $test as $name => $list )

share|improve this answer
$test = array('selected' =>$selected, 'sectionList'=>$sectionList, 'categoryList'=>$categoryList);
    <? foreach($test as $key => $list) { ?>
        <? foreach($list as $list2) { ?>
            <h3><?=$key?>, <?=$list2[id]?>, <?=$list2['name']?>, <?=$list2['value']?></h3>
        <? } ?>
    <? } ?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.