Commit 449b4243 authored by Nico Schallehn's avatar Nico Schallehn

test

parent f24f1c8f
......@@ -58,16 +58,10 @@ class MediaDBViewerAPI{
//echo "SELECT ".$this->iset($GET_arr['Spalten'], '*')." FROM ".$GET_arr['Table']." ".$this->iset($GET_arr['Order'], " ", "ORDER BY ", " ").$this->iset($GET_arr['Limit'],"", " Limit "," ").";";
//var_dump($entrys->fetch_array());
var_dump($GET_arr);
/*$TitelArray = explode(",", $GET_arr['Spalten']);
$i = 0;
while($entry = $entrys->fetch_array()){
foreach ($TitelArray as $Titel){
$tempArray[$Titel] = utf8_encode($entry[$Titel]);
}
array_push($entryArray,$tempArray);
}*/
$TitelArray = array();
foreach ($finfo as $val) {
array_push($TitelArray, $val->name);
}
$entryArray = array();
$finfo = $entrys->fetch_fields();
while($entry = $entrys->fetch_array()){
......
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