-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv-kontakt.php
82 lines (51 loc) · 1.54 KB
/
v-kontakt.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
//*******************************************************************************************************
// dieses Script oist in der Lage eine beliebige Tabelle mit allen Attributen als HTML-Tabelle anzuzeigen
// 25.11.2018
//*******************************************************************************************************
// Verbindung zur Datenbank aufbauen
include("v-dbconnect.php");
// Tabellenstruktur ermitteln
// $ergebnis = mysqli_query($db,"Describe Kontakte");
$tabelle = 'Mitglieder';
$ergebnis = mysqli_query($db,"Describe ".$tabelle."");
//
$SQLstring = "Select ";
echo "<table>";
$attribute = array();
while ($row = mysqli_fetch_object($ergebnis))
{
$attribute[] =$row->Field;
$SQLstring="$SQLstring".$row->Field.',';
}
// das letzte Komma muss wieder entfernt werden
$SQLstring = rtrim($SQLstring,',');
$SQLstring="$SQLstring"." from ".$tabelle.";";
$counts = 0;
$counts = array_count_values($attribute);
for ($i = 1;
$i <= count($attribute);
$i++) {
}
$ergebnis1 = mysqli_query($db,$SQLstring);
if ($ergebnis1->num_rows > 0) {
echo "<table><tr>"; }
for ($i = 1;
$i <= count($attribute);
$i++) {
echo "<th>".$attribute[$i]."</th>";
}
echo "</tr>";
// output data of each row
while($row = $ergebnis1->fetch_assoc())
{
echo "<tr>";
for ($i = 1;
$i <= count($attribute);
$i++)
{
// echo $i;
echo " <td>".$row["$attribute[$i]"]."</td>";
}
}
?>