summaryrefslogtreecommitdiff
path: root/www-ssl/inc/funktion_db_list.php
diff options
context:
space:
mode:
authorichdasich <ichdasich@29ba0400-6e00-0410-a75a-ca02368028f8>2008-09-14 23:54:13 +0000
committerichdasich <ichdasich@29ba0400-6e00-0410-a75a-ca02368028f8>2008-09-14 23:54:13 +0000
commit9e0f67059cca84566e07c0eacbe5465d54302f70 (patch)
tree717cb1384e21dfe28c1e6eb9c5793b97c2978e20 /www-ssl/inc/funktion_db_list.php
parent4f7aae82f86916200d881cdbe4da5e151d080271 (diff)
removed /inc due obsolation
git-svn-id: svn://svn.cccv.de/engel-system@286 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/inc/funktion_db_list.php')
-rwxr-xr-xwww-ssl/inc/funktion_db_list.php34
1 files changed, 0 insertions, 34 deletions
diff --git a/www-ssl/inc/funktion_db_list.php b/www-ssl/inc/funktion_db_list.php
deleted file mode 100755
index fbf1c821..00000000
--- a/www-ssl/inc/funktion_db_list.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?PHP
-
-function funktion_db_list($Table_Name) {
-
- global $con;
-
-$SQL = "SELECT * FROM `".$Table_Name."`";
-$Erg = mysql_query($SQL, $con);
-
-// anzahl zeilen
-$Zeilen = mysql_num_rows($Erg);
-
-$Anzahl_Felder = mysql_num_fields($Erg);
-
-echo "<table border=1>";
-
-echo "<tr>";
-for ($m = 0 ; $m < $Anzahl_Felder ; $m++) {
- echo "<th>". mysql_field_name($Erg, $m). "</th>";
- }
-echo "</tr>";
-
-for ($n = 0 ; $n < $Zeilen ; $n++) {
- echo "<tr>";
- for ($m = 0 ; $m < $Anzahl_Felder ; $m++) {
- echo "<td>".mysql_result($Erg, $n, $m). "</td>";
- }
- echo "</tr>";
-}
-
-echo "</table>";
-}
-
-?>