engelsystem/includes/funktion_db_list.php

66 lines
1.5 KiB
PHP
Raw Normal View History

2011-06-01 12:13:39 +02:00
<?php
function funktion_db_list($Table_Name) {
global $con;
2011-06-01 12:13:39 +02:00
$SQL = "SELECT * FROM `".$Table_Name."`";
$Erg = mysql_query($SQL, $con);
2011-06-01 12:13:39 +02:00
// anzahl zeilen
$Zeilen = mysql_num_rows($Erg);
2011-06-01 12:13:39 +02:00
$Anzahl_Felder = mysql_num_fields($Erg);
2011-06-01 12:13:39 +02:00
echo "<table class=\"border\" cellpadding=\"2\" cellspacing=\"1\">";
echo "<caption>DB: $Table_Name</caption>";
2011-06-01 12:13:39 +02:00
echo "<tr class=\"contenttopic\">";
for ($m = 0 ; $m < $Anzahl_Felder ; $m++)
{
echo "<th>". mysql_field_name($Erg, $m). "</th>";
}
echo "</tr>";
2011-06-01 12:13:39 +02:00
for ($n = 0 ; $n < $Zeilen ; $n++)
{
echo "<tr class=\"content\">";
for ($m = 0 ; $m < $Anzahl_Felder ; $m++)
{
echo "<td>".mysql_result($Erg, $n, $m). "</td>";
}
echo "</tr>";
}
echo "</table>";
}
2010-11-08 23:38:31 +01:00
function funktion_db_element_list_2row( $TopicName, $SQL)
{
2011-06-01 12:13:39 +02:00
global $con;
2010-11-08 23:38:31 +01:00
2011-06-01 12:13:39 +02:00
echo "<table class=\"border\" cellpadding=\"2\" cellspacing=\"1\">\n";
echo "<caption>$TopicName</caption>";
2011-06-01 19:42:57 +02:00
# echo "<tr class=\"contenttopic\"> <td><h1>$TopicName</h1></td> </tr>\n";
2010-11-08 23:38:31 +01:00
2011-06-01 12:13:39 +02:00
$Erg = mysql_query($SQL, $con);
echo mysql_error($con);
echo "<tr class=\"contenttopic\">";
for ($m = 0 ; $m < mysql_num_fields($Erg) ; $m++)
{
echo "<th>". mysql_field_name($Erg, $m). "</th>";
}
echo "</tr>";
2010-11-08 23:38:31 +01:00
2011-06-01 12:13:39 +02:00
for ($n = 0 ; $n < mysql_num_rows($Erg) ; $n++)
{
echo "<tr class=\"content\">";
for ($m = 0 ; $m < mysql_num_fields($Erg) ; $m++)
{
echo "<td>".mysql_result($Erg, $n, $m). "</td>";
}
echo "</tr>";
}
echo "</table>\n";
}
?>