Zakładając, że podana tablica jest w $array, możesz tego użyć. Ale jak już powiedziałem, powinieneś wybrać identyfikatory, aby obsługiwać kategorie o tej samej nazwie i używać ich jako wartości opcji w polu wyboru:
$options = get_options($array);
echo "<select>";
foreach($options as $val) {
echo "<option>".$val."</option>";
}
echo "</select>";
function get_options($array, $parent="", $indent="") {
$return = array();
foreach($array as $key => $val) {
if($val["parent category"] == $parent) {
$return[] = $indent.$val["category name"];
$return = array_merge($return, get_options($array, $val["category name"], $indent." "));
}
}
return $return;
}
Zakładając, że masz teraz identyfikatory w swojej tablicy jako „category_id” i „parent_category_id”, możesz tego użyć. "x" przed kluczem w $return ma na celu uniknięcie zmiany kluczy przez php, ponieważ są one numeryczne.
$options = get_options($array);
echo "<select>";
foreach($options as $key => $val) {
echo "<option value='".substr($key,1)."'>".$val."</option>";
}
echo "</select>";
function get_options($array, $parent=0, $indent="") {
$return = array();
foreach($array as $key => $val) {
if($val["parent_category_id"] == $parent) {
$return["x".$val["category_id"]] = $indent.$val["category name"];
$return = array_merge($return, get_options($array, $val["category_id"], $indent." "));
}
}
return $return;
}