Initiale Version

This commit is contained in:
Jan Unger
2016-08-16 21:20:53 +02:00
commit 88cf71d772
10930 changed files with 1708903 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
$person = [
'vorname' => 'Max',
'nachname' => 'Muster',
'strasse' => 'Musterstraße 1'
];
foreach ($person as $wert) {
var_dump($wert);
echo '<br>';
}
echo '<ul>';
foreach ($person as $wert) {
echo '<li>' . $wert . '</li>';
}
echo '</ul>';
echo '<ul>';
foreach ($person as $schluessel => $wert) {
echo '<li>' . $schluessel . ': ' . $wert . '</li>';
}
echo '</ul>';