summaryrefslogtreecommitdiff
path: root/www-ssl/admin/debug.php
diff options
context:
space:
mode:
authorcookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-12-18 23:18:24 +0000
committercookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-12-18 23:18:24 +0000
commit31f79eea2704ac65f6f95bb9bd9a3d00cd8f5929 (patch)
tree733ac00b314278f3168877b23dbf517c0ff1d450 /www-ssl/admin/debug.php
parentb997e995341fe6a16c29ebf69fce8fe02ebc1f65 (diff)
add functions in engelliste
bugfix news git-svn-id: svn://svn.cccv.de/engel-system@103 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/admin/debug.php')
-rwxr-xr-xwww-ssl/admin/debug.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/www-ssl/admin/debug.php b/www-ssl/admin/debug.php
index 917e4a32..aaf1bcb4 100755
--- a/www-ssl/admin/debug.php
+++ b/www-ssl/admin/debug.php
@@ -5,7 +5,7 @@ $header = "Datenbank-Auszug";
include ("./inc/header.php");
include ("./inc/funktion_db_list.php");
-echo "<h1>Counter</h1> <br>";
+echo "<h1>Web Counter</h1>";
funktion_db_list("Counter");
/*
@@ -30,6 +30,17 @@ funktion_db_list("FAQ");
echo "Deaktiviert";
*/
+
+echo "<h1>Tshirt-Size</h1>";
+$SQL="SELECT `Size`, COUNT(`Size`) FROM User GROUP BY `Size`";
+$Erg = mysql_query($SQL, $con);
+echo mysql_error($con);
+$rowcount = mysql_num_rows($Erg);
+
+for ($i=0; $i<$rowcount; $i++)
+ echo mysql_result($Erg, $i, 1). "x '". mysql_result($Erg, $i, 0). "'<br>\n";
+
+
include ("./inc/footer.php");
?>