prepare("SELECT * FROM entries WHERE userID = '$uID'"); $stmt->execute(); $result = $stmt->get_result(); while ($row = $result->fetch_assoc()) { echo'
'; echo'
'; echo'
' . $row['vorname'] . ' ' . $row['nachname'] . '
'; if(!empty(trim($row['geburtstag']))){ echo'

Geburtstag: ' . $row['geburtstag'] . '

'; } if(!empty(trim($row['wohnort']))){ echo'

Wohnort: ' . $row['wohnort'] . '

'; } if(!empty(trim($row['strasse']))){ echo'

Straße: ' . $row['strasse'] . '

'; } if(!empty(trim($row['kennenUns']))){ echo'

Woher kennen wir uns? ' . $row['kennenUns'] . '

'; } if(!empty(trim($row['festnetz']))){ echo'

Festnetz: ' . $row['festnetz'] . '

'; } if(!empty(trim($row['handynummer']))){ echo'

Handynummer: ' . $row['handynummer'] . '

'; } if(!empty(trim($row['email']))){ echo'

E-Mail: ' . $row['email'] . '

'; } if(!empty(trim($row['hobbies']))){ echo'

Hobbies: ' . $row['hobbies'] . '

'; } if(!empty(trim($row['berufswunsch']))){ echo'

Berufswunsch: ' . $row['berufswunsch'] . '

'; } if(!empty(trim($row['essen']))){ echo'

Das könnte ich jeden Tag essen: ' . $row['essen'] . '

'; } if(!empty(trim($row['insel']))){ echo'

Was ich auf eine Insel mitnehmen würde: ' . $row['insel'] . '

'; } if(!empty(trim($row['film']))){ echo'

Lieblingsfilm: ' . $row['film'] . '

'; } if(!empty(trim($row['sport']))){ echo'

Lieblingssport: ' . $row['sport'] . '

'; } if(!empty(trim($row['charakter']))){ echo'

Coolster Film oder Spielecharakter: ' . $row['charakter'] . '

'; } if(!empty(trim($row['tier']))){ echo'

Mein Lieblingstier: ' . $row['tier'] . '

'; } if(!empty(trim($row['musik']))){ echo'

Lieblingsmusik: ' . $row['musik'] . '

'; } if(!empty(trim($row['game']))){ echo'

Geilstes Game: ' . $row['game'] . '

'; } if(!empty(trim($row['alk']))){ echo'

Lieblings alkoholisches Getränk: ' . $row['alk'] . '

'; } if(!empty(trim($row['story']))){ echo'

Meine heftigeste Suffstory: ' . $row['story'] . '

'; } if(!empty(trim($row['absturz']))){ echo'

Letzter Absturz: ' . $row['absturz'] . '

'; } if(!empty(trim($row['trinkspiel']))){ echo'

Lieblings Trinkspiel: ' . $row['trinkspiel'] . '

'; } echo'
'; //Close Card Body echo'
'; //Close Card } ?>