-2

ユーザーが会社と日付を選択するフォームがあります。次に、ユーザーはデータベースからインベントリを選択し、後で使用するためにレコードIDを配列に追加する必要があります。私の考えは、各インベントリアイテムのIDを取得し、それを配列に渡すだけです。そうすれば、後でそれをループしてmysqlに挿入できます。ユーザーがフィールドから在庫を検索し、そのフィールドの下に結果が表示され、ユーザーがその特定の在庫アイテムを選択できるようにしたいと思います。クリック/選択すると、そのレコードIDが後で再生できる配列に追加されます。

<form action="" method="post">
    <div>
    <select>
        <option>Company 1</option>
        <option>Company 2</option>
    </select>
    </div>
    <div>
        <input type="text" name="date">
    </div>
    <div>
        <input type="text" name="search">
        // Here is where I need to display the results from the db based on what the user typed in a drop down, then when that user selects that item then it will add that records id to an array. Then I need the array to display below and how the records based on the id. 
    </div>
    <div>
    // The array is shown here and as the user selects multiple items. It might look something like this
    <? $thisarray = array() - as users select items from drop down then the records ids are added to the array. Then as they are added to the array I can use a mysql SELECT to display those records. Then when the user submits the form I can pass that array as well.
    </div>
</form>

これが理にかなっている場合はお知らせください。そうでない場合は、質問を変更します

4

1 に答える 1

0

serial_numberを文字列にすることができる場合は、プレフィックス付きのuuid(Universal Unique Identifier)を使用できます。

http://php.net/manual/en/function.uniqid.php

于 2012-12-23T09:37:13.200 に答える