复制和粘贴后无法显示Bootstrap模式

时间:2015-05-12 06:57:39

标签: html css

我使用最新的bootstrap,然后我为我的注册链接制作了第二个模态,我复制并粘贴了我登录的确切代码,但由于某种原因,寄存器不会。它只会使背景变暗但不会弹出模态。

<form action="admin.php" method="post">

    <?php
    $conn=mysqli_connect("localhost","root","vravi","mrconnect");
    if(!$conn)
    {
        echo "error establishing the connection";
    }
    $sql="select UserID,UserEmail from Users order by UserID";
    $result=mysqli_query($conn,$sql);


    if(mysqli_num_rows($result)>0)
    {
        while($row=mysqli_fetch_assoc($result))
       {

          echo $row["UserID"];
          echo  $row["UserEmail"]." ".'<input type=\"text\" name=\"name[]\"/>'."</br>";     
        }
        echo '<button type=\"submit\" name=\"submit\"   value=\"submit\">'.Submit.'</button></br>';
    }
    ?>
</form>

2 个答案:

答案 0 :(得分:0)

register-modal div放在login-modal div中。(你已经错过了登录模式的一个结束div标签。)请将register-modal放在login-modal之外。它会很完美。

干杯!

答案 1 :(得分:0)

您错过了关闭以下内容

  1. 登录模式:
  2. <div class="modal fade" id="loginModal" aria-hidden="true">

    <强> </div>

    1. 注册模式:
    2. <div class="modal fade" id="registerModal" aria-hidden="true">

      <强> </div>