Commit 82b6192a authored by Nico Schallehn's avatar Nico Schallehn

test

parent 98534882
...@@ -16,7 +16,7 @@ function jsonCacheDecoder($url){ ...@@ -16,7 +16,7 @@ function jsonCacheDecoder($url){
} }
function TableRowRights($Api, $Data = null){ function TableRowRights($Api, $Data = null){
$ret = '<tr>'. $ret = '<tr>'.
'<td>'.$Data["from"].' - '.$Data["to"].'</td>'; '<td>'.$Data["from"].'</td> <td> '.$Data["to"].'</td>';
$Api->SpaltenFilme; $Api->SpaltenFilme;
foreach ($Api->SpaltenFilme as $value) { foreach ($Api->SpaltenFilme as $value) {
...@@ -147,7 +147,7 @@ if($_GET["action"] == "filme"){ ...@@ -147,7 +147,7 @@ if($_GET["action"] == "filme"){
var_dump($Data); var_dump($Data);
$content .= ob_get_clean(); $content .= ob_get_clean();
$content .= '<div style="width: 500px; height: 500px; overflow: auto;"><table border="1">'.PHP_EOL; $content .= '<div style="width: 500px; height: 500px; overflow: auto;"><table border="1">'.PHP_EOL;
$content .= '<tr><th>Von - Bis</th>'; $content .= '<tr><th>Von</th> <th> Bis</th>';
foreach ($API->SpaltenFilme as $value) { foreach ($API->SpaltenFilme as $value) {
$content .= '<th>'.$value.'</th>'; $content .= '<th>'.$value.'</th>';
} }
......
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