<?php

include("dbconnect.php");

mysql_select_db("db547375710“);

$ergebnis = mysqli_query($db, "SELECT * FROM Adressliste);

while($row = mysqli_fetch_object($ergebnis))

{

  echo „$row->vorname, $row->nachname, $row->geburtsdatum, $row->strasse, $row->plz, $row->stadt, $row->land, $row->email, $row->telefon

$row->sonstiges echo <br />";

}

?>