Created
November 9, 2018 04:16
-
-
Save scuba323/c292c8f5f70598fa801219d977836729 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>"; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment