guten morgen,
ich hab folgendes array problem:
[0] => Array
(
[idadressen] => 1
[0] => 1
[straße] => xxxx
[1] => xxxx
)
[1] => Array
(
[idadressen] => 2
[0] => 2
[straße] => xxxxx
[1] => xxxxx
)
so sieht mein array in gekürzter form aus.
Wie bekomm ich nun auch die Inhalte wie Straße plz usw. ?
ich hab folgendes array problem:
[0] => Array
(
[idadressen] => 1
[0] => 1
[straße] => xxxx
[1] => xxxx
)
[1] => Array
(
[idadressen] => 2
[0] => 2
[straße] => xxxxx
[1] => xxxxx
)
so sieht mein array in gekürzter form aus.
Wie bekomm ich nun auch die Inhalte wie Straße plz usw. ?
PHP:
echo "<table border=1>";
foreach($all as $wert)
{
$count = count($all);
for ($i=0; $i < $count; $i++)
echo "<tr><td>".$wert[$i]."</td></tr>";
}
echo "</table>";