Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,857 questions

51,778 answers

573 users

How to output a multidimensional array with index and value into a table in PHP

1 Answer

0 votes
$arr =  Array ( 
        0 => Array 
        ( 
            'id' => 13, 
            'name' => "R2D2",
            'description' => "A resourceful astromech droid",
            'price' => 10000000
        ),
        1 => Array 
        ( 
            'id' => 19, 
            'name' => "C-3PO", 
            'description' => "droid programmed for etiquette and protocol",
            'price' => 7000000 
        ), 
);

echo "<table>";
foreach ($arr as $key => $value) {
    foreach ($value as $ky => $val) {
        echo "<tr>";
        echo "<td>$ky</td>"; 
        echo "<td>$val</td>"; 
        echo "</tr>";
    }
}
echo "</table>";

/*
run: 
 
id    13
name    R2D2
description    A resourceful astromech droid
price    10000000
id    19
name    C-3PO
description    droid programmed for etiquette and protocol
price    7000000
 
*/

 



answered Jul 26, 2017 by avibootz

Related questions

...