Commit 770aec29 authored by Nico Schallehn's avatar Nico Schallehn

test

parent 116c98de
......@@ -98,12 +98,12 @@ if($_GET["action"] == "filme"){
}else if($_GET["action"] == "vergleich"){
$titel = "Vergleich von 2 DB";
$MovieArray = jsonCacheDecoder("http://mediadb.ddns.net/api.php?key=ee3aTi5soo&action=GetDataList&Tabelle=Filme&Spalten=imdbID,3d,name,md5&3d=0&Sortierung=added");
$MovieArray = jsonCacheDecoder("http://mediadb.ddns.net/api.php?key=ee3aTi5soo&action=GetDataList&Tabelle=Filme&Spalten=imdbID,3d,name,md5&3d=0&Sortierung=added DESC");
$movies="";
//var_dump($MovieArray["Antwort"]);
foreach ($MovieArray["Antwort"]["Data"] as $key => $value) {
$MovieArray = $API->API_GetDataList(array("Tabelle"=>"Filme", "Spalten"=>"imdbID,name","imdbID"=>$value["imdbID"]));
var_dump($MovieArray["Data"]["imdbID"]);
var_dump($MovieArray["Data"][0]["imdbID"]);
$movies .= "<tr><td>".$value["name"]." ".$value["3d"]."</td><td>".$value["imdbID"]."</td><td>".$value["md5"]."</td></tr>";
}
......
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