1

我已经为即将举行的双人锦标赛建立了这个页面: http ://excelwrestling.com/poola.php。我从 mySQL 数据库中提取了大部分数据,现在只有一些示例数据。

我正在寻找链接选择框,因此当用户选择 TEAM 1(在顶部)时,它将更新所有 WRESTLER 1 选择框,其中仅包含该团队的名称。第 2 队也是如此。

另一部分是,当一个人选择 WRESTLER 1 与 WRESTLER 2 时,我希望这两个名称填写 WINNER 字段,因此用户只能在这两个名称之间进行选择。

您可以向我解释的任何内容或您可以发布的代码将不胜感激。

谢谢!

4

1 回答 1

1

您可能希望使用特殊查询从团队中获取摔跤手。然后使用 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.)

也不要忘记,连接变量是数据库访问凭据。

于 2012-06-28T19:02:42.287 回答