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($row['geburtstag'])){ echo'

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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