JSON Javascript AJAX jQuery HTML PHP Example MORE

How can I parse JSON into a html table using PHP


<?php
    $json=file_get_contents("http://west.basketball.nl/db/json/stand.pl?szn_Naam=2014-2015&cmp_ID=373");
    $data =  json_decode($json);

    if (count($data->stand)) {
        /* Open the table */
        echo "<table>";

        /* Cycle through the array */
        foreach ($data->stand as $idx => $stand) {

            /* Output a row */
            echo "<tr>";
            echo "<td>$stand->afko</td>";
            echo "<td>$stand->positie</td>";
            echo "</tr>";
        }

        /* Close the table */
        echo "</table>";
    }
?>