ben bu dizi var.
array(24) {
[0]=> array(3) {
["id"]=> string(1) "1"
["category"]=> string(5) "Alles"
["description"]=> string(0) ""
}
[1]=> array(3) {
["id"]=> string(2) "11"
["category"]=> string(6) "Cinema"
["description"]=> string(0) ""
}
[2]=> array(3) {
["id"]=> string(1) "8"
["category"]=> string(8) "Computer"
["description"]=> string(0) ""
}
}
Ve ben bu bilgileri nasıl göstereceğimi bilmiyorum:
Ben denedim:
for ($x = 0; $x < sizeof($array); ++$x)
{
echo "key: ".key($array)."<br>value: ".current($array)."<br>";
next($array);
}
The Key value is now right, but the current-value is also an array :( I hope someone can help.