diff --git a/php/showentries.php b/php/showentries.php new file mode 100644 index 0000000..2b4e5f7 --- /dev/null +++ b/php/showentries.php @@ -0,0 +1,97 @@ +connect_error) { + die('Connect Error (' . $mysqli->connect_errno . ') ' . $mysqli->connect_error); +} + + +//AUF DATEN AUS DB ZUGREIFEN -> NUR VON USER +$stmt = $mysqli->prepare("SELECT * from entries WHERE userID = '$session'"); + + try { + $stmt->execute(); + } catch (PDOException $e) { + $e->getMessage(); + } + $result = $stmt->get_result(); + $ID = 1; + $zeit = 1; + $a = ""; + + // TABELLEN KOPF + echo '
Vorame | '; + echo 'Nachname | '; + echo 'Geburtstag | '; + echo 'Wohnort | '; + echo 'Straße | '; + echo 'Daher kennen wir uns | .'; + echo 'Festnetz-Nummer | '; + echo 'Handynummer | '; + echo 'hobbies | '; + echo 'Berufswunsch | '; + echo 'Liebingsesen | '; + echo 'Das würde ich auf eine einsamme Insel mitnehmen | '; + echo 'Lieblingsfilm | '; + echo 'Lieblingssport | '; + echo 'Lieblings Filmcharaacter | '; + echo 'Lieblings Tier | '; + echo 'Lieblings Musik | '; + echo 'Lieblings Game | '; + echo 'Lieblings Alkohol | '; + echo 'Lieblings Saufgeschichte | '; + echo 'Letzter Absturz | '; + echo 'Lieblingstrinkspiel | '; + + echo '|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
' . $row['vorname'] . ' | '; + echo '' . $row['nachname'] . ' | '; + echo '' . $row['geburtstag'] . ' | '; + echo '' . $row['wohnort'] . ' | '; + echo '' . $row['strasse'] . ' | '; + echo '' . $row['kennenUns'] . ' | '; + echo '' . $row['festnetz'] . ' | '; + echo '' . $row['handynummer'] . ' | '; + echo '' . $row['email'] . ' | '; + echo '' . $row['hobbies'] . ' | '; + echo '' . $row['berufswunsch'] . ' | '; + echo '' . $row['essen'] . ' | '; + echo '' . $row['insel'] . ' | '; + echo '' . $row['film'] . ' | '; + echo '' . $row['sport'] . ' | '; + echo '' . $row['charakter'] . ' | '; + echo '' . $row['tier'] . ' | '; + echo '' . $row['musik'] . ' | '; + echo '' . $row['game'] . ' | '; + echo '' . $row['alk'] . ' | '; + echo '' . $row['story'] . ' | '; + echo '' . $row['absturz'] . ' | '; + echo '' . $row['trinkspiel'] . ' | '; + + echo '