おそらく、特別なクエリを使用して、チームからレスラーを取得することをお勧めします。次に、whileループを使用して、チームのすべてのレスラーを配列から更新します。次に、データベースから特別に選択されたインデックス番号に配列を割り当てます。データベースに何を表示できますか?私は助けるために知る必要があります。私はあなたのデータベースに何があるのかわからないので。データベースがどのように構成されているかを推測します。チームのドロップダウンリストの名前がteam_selectであり、レスラーテーブルの各レスラーにwrestler_idwrestler_nameとteam_idがあるとします。
次のコードを実行します
$team_select = $_POST['team_select']
$wrestler_query = "SELECT wrestler_name FROM wrestler WHERE team_id = "
. $team_select;
$query = mysqli_query($connection, $wrestler_query);
//Repeat code from here... (see bottom)
while( $team_select = mysqli_fetch_assoc($query));
{
echo '<option class="Select1" value="' . $team_select['wrestler_name'] . '">'</option>
}
<?
</select>
<?php
mysqli_data_seek($accounts,0);
//..to here for other drop down lists (except give the different names of different drop down lists in the html.)
また、接続変数はデータベースアクセスの資格情報であることも忘れないでください。