X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/156ce57fecaeb865e94c8fff7af334104e4a4288..c6e155714d4facf6297b5159057c1483a59609c8:/wblist.php diff --git a/wblist.php b/wblist.php index 1e643a2..1f42f94 100644 --- a/wblist.php +++ b/wblist.php @@ -4,7 +4,7 @@ require_once $CFG->root . 'lib/utils.inc.php'; function createHeader($data) { - $out = ''; + $out = 'Id'; foreach ($data as $head => $value) { $out .= "$head"; } @@ -18,12 +18,14 @@ } $headers = createHeader($raw[0]); $r = "$headers"; + $i = 1; foreach ($raw as $obj) { - $r .= ''; + $r .= ""; foreach ($obj as $value) { $r .= ""; } $r .= ''; + $i++; } $r .= '
$i$value
';