2

php/mysql でフォームを作成しています。ロケーションとサブロケーションのリストを含むテーブルがあります。各サブロケーションには親ロケーションがあります。列「parentid」は、同じテーブル内の別の locationid を参照しています。これらの値を次の方法でドロップダウンにロードしたいと思います。

--Location 1
----Sublocation 1
----Sublocation 2
----Sublocation 3
--Location 2
----Sublocation 4
----Sublocation 5

などなど

誰かがこれを行うためのエレガントなソリューションを手に入れましたか?

4

5 に答える 5

1

OPTGROUPタグのようなものをお探しですか?

于 2008-09-30T21:26:21.150 に答える
1

注: これは疑似コードにすぎません。実行しようとはしませんでしたが、必要に応じて概念を調整できるはずです。

$parentsql = "SELECT parentid, parentname FROM table";

 $result = mysql_query($parentsql);
 print "<select>";
 while($row = mysql_fetch_assoc($result)){
    $childsql = "SELECT childID, childName from table where parentid=".$row["parentID"];
    $result2 = mysql_query($childsql);
    print "<optgroup label=\".$row["parentname"]."\">";
    while($row2 = mysql_fetch_assoc($result)){
        print "<option value=\"".$row["childID"]."\">".$row["childName"]."</option>\n";
    }
    print "</optgroup>";
}
 print "</select>";

BaileyP の有効な批判を念頭に置いて、すべてのループで複数のクエリを呼び出すオーバーヘッドなしでそれを行う方法を次に示します。

$sql = "SELECT childId, childName, parentId, parentName FROM child LEFT JOIN parent ON child.parentId = parent.parentId ORDER BY parentID, childName";  
$result = mysql_query($sql);
$currentParent = "";

print "<select>";
while($row = mysql_fetch_assoc($result)){
    if($currentParent != $row["parentID"]){
        if($currentParent != ""){
            print "</optgroup>";
        }
        print "<optgroup label=\".$row["parentName"]."\">";
        $currentParent = $row["parentName"];
    }

    print "<option value=\"".$row["childID"]."\">".$row["childName"]."</option>\n";
}
print "</optgroup>"
print "</select>";
于 2008-09-30T21:37:23.417 に答える
0

理想的には、このすべてのデータを適切な順序でデータベースから直接選択し、それをループして出力するだけです。これがあなたが求めているものに対する私の見解です

<?php
/*
Assuming data that looks like this

locations
+----+-----------+-------+
| id | parent_id | descr |
+----+-----------+-------+
|  1 |      null | Foo   |
|  2 |      null | Bar   |
|  3 |         1 | Doe   |
|  4 |         2 | Rae   |
|  5 |         1 | Mi    |
|  6 |         2 | Fa    |
+----+-----------+-------+
*/

$result = mysql_query( "SELECT id, parent_id, descr FROM locations order by coalesce(id, parent_id), descr" );

echo "<select>";
while ( $row = mysql_fetch_object( $result ) )
{
    $optionName = htmlspecialchars( ( is_null( $row->parent_id ) ) ? "--{$row->descr}" : "----{$row->desc}r", ENT_COMPAT, 'UTF-8' );
    echo "<option value=\"{$row->id}\">$optionName</option>";
}
echo "</select>";

この関数の使用が気に入らない場合は、coalesce()手動で設定できる「display_order」列をこのテーブルに追加してから、ORDER BY.

于 2008-09-30T23:10:22.040 に答える
0

optgroup は間違いなく進むべき道です。それは実際にはそのためのものであり、

使用例については、 http: //www.grandhall.eu/tips/submit/ のソースを表示してください- 「Grandhall Grill Used」の下のセレクター。

于 2008-09-30T21:30:09.020 に答える
0

実際の HTML ではスペース/ダッシュのインデントを使用できます。ただし、それを構築するには再帰ループが必要です。何かのようなもの:

<?php

$data = array(
    'Location 1'    =>    array(
        'Sublocation1',
        'Sublocation2',
        'Sublocation3'    =>    array(
            'SubSublocation1',
        ),
    'Location2'
);

$output = '<select name="location">' . PHP_EOL;

function build_items($input, $output)
{
    if(is_array($input))
    {
        $output .= '<optgroup>' . $key . '</optgroup>' . PHP_EOL;
        foreach($input as $key => $value)
        {
            $output = build_items($value, $output);
        }
    }
    else
    {
        $output .= '<option>' . $value . '</option>' . PHP_EOL;
    }

    return $output;
}

$output = build_items($data, $output);

$output .= '</select>' . PHP_EOL;

?>

または似たようなもの;)

于 2008-09-30T21:30:19.690 に答える