From b00d5b96c6d33572b6d7c68688d6d1c4fbd0f0f4 Mon Sep 17 00:00:00 2001 From: ichdasich Date: Wed, 10 Sep 2008 03:42:44 +0000 Subject: moved /inc to ../includes git-svn-id: svn://svn.cccv.de/engel-system@281 29ba0400-6e00-0410-a75a-ca02368028f8 --- includes/funktion_db_list.php | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 includes/funktion_db_list.php (limited to 'includes/funktion_db_list.php') diff --git a/includes/funktion_db_list.php b/includes/funktion_db_list.php new file mode 100755 index 00000000..fbf1c821 --- /dev/null +++ b/includes/funktion_db_list.php @@ -0,0 +1,34 @@ +"; + +echo ""; +for ($m = 0 ; $m < $Anzahl_Felder ; $m++) { + echo "". mysql_field_name($Erg, $m). ""; + } +echo ""; + +for ($n = 0 ; $n < $Zeilen ; $n++) { + echo ""; + for ($m = 0 ; $m < $Anzahl_Felder ; $m++) { + echo "".mysql_result($Erg, $n, $m). ""; + } + echo ""; +} + +echo ""; +} + +?> -- cgit v1.2.3-54-g00ecf