Commit 5f5f7117 authored by Nico Schallehn's avatar Nico Schallehn

test

parent 3615fcbe
...@@ -199,8 +199,8 @@ if($_GET["action"] == "filme"){ ...@@ -199,8 +199,8 @@ if($_GET["action"] == "filme"){
ob_start(); ob_start();
var_dump($Data); var_dump($Data);
$content .= ob_get_clean(); $content .= ob_get_clean();
$content .= '<div style="width: 100%; overflow: auto;"><table class="table table-header-rotated">'.PHP_EOL; $content .= '<div style="width: 100%; overflow: auto;"><table>'.PHP_EOL;
$content .= ' <thead><tr><th >Von</th> <th> Bis</th> '; $content .= ' <tr><th >Von</th> <th> Bis</th> ';
foreach ($API->SpaltenFilme as $value) { foreach ($API->SpaltenFilme as $value) {
$content .= '<th class="rotate"><div><span>'.$value.'</span></div></th>'; $content .= '<th class="rotate"><div><span>'.$value.'</span></div></th>';
...@@ -212,12 +212,12 @@ if($_GET["action"] == "filme"){ ...@@ -212,12 +212,12 @@ if($_GET["action"] == "filme"){
$content .= '<th>Update</th>'; $content .= '<th>Update</th>';
$content .= '<th>Debug</th>'; $content .= '<th>Debug</th>';
$content .= '<th>Speichern</th>'; $content .= '<th>Speichern</th>';
$content .= '</tr> </thead> <tbody>'.PHP_EOL; $content .= '</tr> '.PHP_EOL;
foreach ($Data as $value) { foreach ($Data as $value) {
$content .= TableRowRights($API, $value); $content .= TableRowRights($API, $value);
} }
$content .= TableRowRights($API); $content .= TableRowRights($API);
$content .= ' </tbody></table></div>'.PHP_EOL; $content .= ' </table></div>'.PHP_EOL;
} }
$content .= "</div>"; $content .= "</div>";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment