Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to display value from array?

print_r($array) returns:

Array
(
    [0] => Array
        (
            [0] => babababa
            [1] => cavasdv
            [2] => kakakasdg
            [3] => alabalbal
            [4] => sadgsdgkk
            [5] => asdgasdhasdg
            [6] => gasdgasdgasdg
            [7] => sashasdhasdg

        )

    [1] => Array
        (
            [0] => ?google=3
            [1] => ?google=12
            [2] => ?google=764
            [3] => ?google=1241235

        )

)

This code:

foreach($array as $row){
    echo $row;
    echo '<br/>';
}

result: array array

Required Output:

?google=3
?google=12
?google=764
?google=1241235
share|improve this question
"$row" is also an array so you need to do same looping as nested. – Arfeen May 30 '12 at 11:51
To get ?google=3 just use $array[1][0] – Sandeep Bansal May 30 '12 at 11:51

closed as too localized by Yogesh Suthar, dragon112, Jimbo, PeeHaa 埽, Ocramius yesterday

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

6 Answers

foreach($array[1] as $id) {
    echo $id . "<br>\n";
}
share|improve this answer
I think he'll need to use a nested loop.. cause he is looping through a 2-D array. – verisimilitude May 30 '12 at 11:53
foreach($array as $sub_array) {
  foreach ($sub_array as $val) {
    echo $val . '<br>';
  }
}
share|improve this answer

Your array consists of orher arrays. So you have to treat every element of your array as array too.

foreach($array as $row){
  foreach($row as $r) {
    echo $r;
    echo '<br/>';
  }
}
share|improve this answer

the best to loop an array, on both keys & values is:

 while (list($key, $value) = each($array))
 {
      echo '[' . $key . '] -> ['. $value . ']';
 }
 reset($array);
  • Don't forget the reset at the end to be able looping another time
  • Try to use always for a const strings ' and not " because ' will tell php to not search for variable so better performances ;-)
share|improve this answer

To show all child of an array but not an array keyword, you can try this function :

function showAllChildValues($array){
  foreach($array as $v){
    if(is_array($v))showAllChildValues($v);
    else echo $v;
  }
}

And use as this :

showAllChildValues($array)
share|improve this answer
foreach ($array[1] as $row)
    {
       echo $row . '<br />';
    }

and if you want all value then use it :

foreach ($array as $row)
    {
       foreach($row as $row1)
        {
          echo $row1 . '<br />';
        }
    }
share|improve this answer

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