How can I print these values (see description) in a table?

Wilco Van Meppelen Scheppink

Maybe this question is really simple but I can't find any answers on internet and I'm a PHP noob.

how can I print this:

[{"1":{"key":"Aansturing","value":"AAN\/UIT"}},{"1":{"key":"Maximale output","value":"6 W"}},{"1":{"key":"Product categorie","value":"Selecteerbare I OUT"}},{"1":{"key":"Output stroom","value":"350 mA \/ 700 mA"}}]

In

Shadab Mehdi
<?php
$jsonString = '[{"1":{"key":"Aansturing","value":"AAN\/UIT"}},{"1":{"key":"Maximale output","value":"6 W"}},{"1":{"key":"Product categorie","value":"Selecteerbare I OUT"}},{"1":{"key":"Output stroom","value":"350 mA \/ 700 mA"}}]';
$jsonData = json_decode($jsonString, TRUE);
?>
<table border>
    <tr>
        <th>Key</th>
        <th>Value</th>
    </tr>
    <?php foreach ($jsonData as $oneRowData): ?>
        <?php foreach ($oneRowData as $oneRow): ?>
            <tr>
                <td><?php echo $oneRow['key'] ?></td>
                <td><?php echo $oneRow['value'] ?></td>
            </tr>
        <?php endforeach; ?>
    <?php endforeach; ?>
</table>

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I print the description of an unknown type in Swift?

From Dev

How can I get the Drive API to print a description of the file?

From Dev

How can I see print() statements in behave (BDD)

From Dev

How can I see Debug.Print() statements?

From Dev

How can I print string values individually?

From Dev

How can I see if a string matches a PHP array of regex values?

From Dev

How can i calculate table values

From Dev

How can I make echo or printf in shell ignore a double backslash (\\) and print it as I see it

From Dev

How can I print values of nested objects of JSON string?

From Dev

How can I print a matrix in R with NA values hidden?

From Dev

How can I get two keys with duplicate values and print it?

From Dev

How can i print json objects and array values?

From Dev

How Can I Print Values and Index Numbers of an ArrayList without a Loop?

From Dev

How can I print a joined table of strings in Lua?

From Dev

How can I print to the console this table of numbers in Java?

From Dev

How can I print a joined table of strings in Lua?

From Dev

Concatenation in ruby? How can I print a table of 2?

From Dev

PHP - How can I print out my database table?

From Dev

How can I print this?

From Dev

I can not see values in my dropdown

From Dev

How can I have access to values in a table with values() or iteritems()

From Java

How can I see normal print output created during pytest run?

From Dev

I can not see the table dba_object

From Dev

I can not see the table dba_object

From Dev

How to print enum description

From Dev

How can I add a description of the deprecated list?

From Dev

How can i get the description of a GitHub repo?

From Dev

How I can give a description for an AMI image?

From Dev

How can I edit description(not code) in Playground

Related Related

  1. 1

    How can I print the description of an unknown type in Swift?

  2. 2

    How can I get the Drive API to print a description of the file?

  3. 3

    How can I see print() statements in behave (BDD)

  4. 4

    How can I see Debug.Print() statements?

  5. 5

    How can I print string values individually?

  6. 6

    How can I see if a string matches a PHP array of regex values?

  7. 7

    How can i calculate table values

  8. 8

    How can I make echo or printf in shell ignore a double backslash (\\) and print it as I see it

  9. 9

    How can I print values of nested objects of JSON string?

  10. 10

    How can I print a matrix in R with NA values hidden?

  11. 11

    How can I get two keys with duplicate values and print it?

  12. 12

    How can i print json objects and array values?

  13. 13

    How Can I Print Values and Index Numbers of an ArrayList without a Loop?

  14. 14

    How can I print a joined table of strings in Lua?

  15. 15

    How can I print to the console this table of numbers in Java?

  16. 16

    How can I print a joined table of strings in Lua?

  17. 17

    Concatenation in ruby? How can I print a table of 2?

  18. 18

    PHP - How can I print out my database table?

  19. 19

    How can I print this?

  20. 20

    I can not see values in my dropdown

  21. 21

    How can I have access to values in a table with values() or iteritems()

  22. 22

    How can I see normal print output created during pytest run?

  23. 23

    I can not see the table dba_object

  24. 24

    I can not see the table dba_object

  25. 25

    How to print enum description

  26. 26

    How can I add a description of the deprecated list?

  27. 27

    How can i get the description of a GitHub repo?

  28. 28

    How I can give a description for an AMI image?

  29. 29

    How can I edit description(not code) in Playground

HotTag

Archive