Jira Abfrage

This commit is contained in:
2019-10-31 14:43:53 +01:00
parent e1d84f3159
commit 1ff233443b
37 changed files with 5793 additions and 4948 deletions

View File

@@ -0,0 +1,13 @@
<table>
<?php
//debug($tabledata);
foreach($tabledata as $line) {
echo '<tr>';
foreach($line as $cell) {
echo '<td>' . $cell . '</td>';
}
echo '</tr>';
}
?>
</table>