您可能希望使用特殊查询从团队中获取摔跤手。然后使用 while 循环从数组中更新团队中的所有摔跤手。然后将数组分配给数据库中的特殊选择索引号。你能显示数据库中的内容吗?我需要知道才能提供帮助。因为我不知道你的数据库中有什么。我只是猜测您的数据库是如何组织的。假设您的团队下拉列表名为 team_select,并且 wrestler 表中的每个 wrestler 都有一个 wrestler_id wrestler_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.)
也不要忘记,连接变量是数据库访问凭据。