通过标识来引导模式(Pass id to Bootstrap modal)

2019-10-20 20:08发布

我想从这个表传递值的用户ID来引导模式,使我们可以查看他的信息。 有人可以帮我如何做到这一点?

这里是我的用户表:

<table cellpadding="0" cellspacing="0" width="100%" class="table table-striped" id="example">
    <thead>
        <tr>
            <th align="center" width="5%">n</th>
            <th align="center">name</th>
            <th align="center" width="12%">Activity</th>                                  
        </tr>
     </thead>
     <tbody>
         <tr>
             <td><?= $i; ?>.</td>
             <td><?php echo $row['name']; ?></td>
             <td>
                 <a href="#dModal" data-toggle="modal" data-target="#dModal" data-id="<?php echo $row['userID'] ?>" class="open-AddBookDialog btn btn-small btn-square btn-info" title="view"><i class="icon-search"></i></a>
             </td>
          </tr>
    </tbody>
</table>

这是我在同一个PHP文件引导模式。 我只是把下面的表中单独的文件上面,而不是编码。

<div id="dModal" class="modal hide fade" role="dialog" aria-labelledby="myModalLabel">
        <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
            <h3 id="myModalLabel">User Info</h3>
        </div>
        <?php

          $id = $_GET['id'];
          //echo $id;

          $sql_str = "SELECT *
                      FROM
                        adm_user 
                      WHERE userID = '".$id."' ";

          echo ($sql_str);

          $res_user =   mysql_query($sql_str) or die(print_r(mysql_error()));
          $result = mysql_query($sql_str);

        ?>


        <div class="modal-body">
            // view user info here
        </div>
    </div>
文章来源: Pass id to Bootstrap modal