Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to print multidimensional arrays in php [duplicate]

Tags:

php

Possible Duplicate:
php - How do I print this multidimensional array?

I have an array in below format

Array ( [0] => Array ( [product_id] => 33 [amount] => 1 ) [1] => Array ( [product_id] => 34 [amount] => 3 ) [2] => Array ( [product_id] => 10 [amount] => 1 ) ) 

I want to get output from that array as below format

Product ID    Amount
33             1
34             3
10             1

Can anyone please help me regarding this problem. var_dump of the variable is.

array
  0 => 
    array
      'product_id' => string '33' (length=2)
      'amount' => string '1' (length=1)
  1 => 
    array
      'product_id' => string '34' (length=2)
      'amount' => string '3' (length=1)
  2 => 
    array
      'product_id' => string '10' (length=2)
      'amount' => string '1' (length=1)

like image 295
Damith Avatar asked Sep 29 '12 10:09

Damith


2 Answers

I believe this is your array

$array = Array ( 
        0 => Array ( "product_id" => 33 , "amount" => 1 ) ,
        1 => Array ( "product_id" => 34  , "amount" => 3 ) ,
        2 => Array ( "product_id" => 10  , "amount" => 1 ) );

Using foreach

echo "<pre>";
echo "Product ID\tAmount";
foreach ( $array as $var ) {
    echo "\n", $var['product_id'], "\t\t", $var['amount'];
}

Using array_map

echo "<pre>" ;
echo "Product ID\tAmount";
array_map(function ($var) {
    echo "\n", $var['product_id'], "\t\t", $var['amount'];
}, $array);

Output

Product ID  Amount
33          1
34          3
10          1
like image 135
Baba Avatar answered Sep 28 '22 07:09

Baba


     <table>
        <tr>
            <th>Product Id</th>
            <th>Ammount</th>
        </tr>

        <?php
        foreach ($yourArray as $subAray)
        {
            ?>
            <tr>
                <td><?php echo $subAray['product_id']; ?></td>
                <td><?php echo $subAray['amount']; ?></td>
            </tr>
            <?php
        }
        ?>
    </table>
like image 41
Hearaman Avatar answered Sep 28 '22 06:09

Hearaman