繁体   English   中英

为什么我的模态中的“保存”按钮不起作用?

[英]Why is save button in my modal does not work?

osHome.php

这是代码的一部分,“保存更改”按钮不执行任何操作。 我想将数据保存到数据库,而我的代码似乎什么也没做。 请帮助我任何人:(

//php code clip
<?php

session_start();
//Check whether the session variable User_name is present or not
if(!isset($_SESSION['User_name']) || (trim($_SESSION['User_name']) == '')) {
header("location: login.php");
exit();
}
include_once('../config.php');

if(isset($_POST['addNewOs'])){

$new_name = $_POST['newOs_name'];
$new_edition = $_POST['newOs_edition'];
$new_version = $_POST['newOs_version'];

$conn = mysqli_connect($servername, $username, $password, $dbname);

if (!$conn) {
    die("Connection failed: " . mysqli_connect_error());
}else {

$sql = "INSERT INTO oslist (oslist_name, oslist_edition, oslist_version) 
        VALUES ('$new_name', '$new_edition','$new_version')";
mysqli_query($conn, $sql);
echo "<script type='text/javascript'>alert('New record created successfully');</script>";
}

}
?>

//modal
<div class="modal fade" id="basicModal" tabindex="-1" role="dialog" aria-labelledby="basicModal" aria-hidden="true">
                        <div class="modal-dialog">
                            <div class="modal-content">
                                <div class="modal-header">
                                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button>
                                <h4 class="modal-title" id="myModalLabel">Add New OS</h4>
                                </div>
                                <div class="modal-body">
                                    <form method="post" action="osHome.php">
                                    <table style="width: 100%" class="table table-bordered" >
                                        <tr><th><label>OS Name</label></th>
                                            <td colspan="3" ><input type="text" name="newOs_name" class="form-control"></td>
                                        </tr>
                                        <tr><th><label>Edition</label></th>
                                            <td colspan="3" ><input type="text" name="newOs_edition" class="form-control"></td>
                                        </tr>
                                        <tr><th><label>Version</label></th>
                                            <td colspan="3" ><input type="text" name="newOs_version" class="form-control" ></td>
                                        </tr>                                       
                                    </table>
                                    </form>
                                </div>
                                <div class="modal-footer">
                                    <button class="btn btn-danger" data-dismiss="modal">Cancel</button>
                                    <input type="submit" name="addNewOs" value="Save Changes" class="btn btn-primary">
                            </div>
                        </div>
                      </div>
                    </div>

            <div id="selectOS"><b>Operating System info will be listed here.</b></div>

-包括了模式和按钮,也许可能有一些我没有注意到的错误。-_-

//button
<a href="#" class="btn btn-xs btn-primary" style="width:100px" data-toggle="modal" data-target="#basicModal">Add New OS</a>

您的按钮在</form>标记之外,并且未与表单关联。 给表单一个ID后,请展开表单中的内容或使用<button form="formid" >属性。

纽扣

选项1

<div class="modal fade" id="basicModal" tabindex="-1" role="dialog" aria-labelledby="basicModal" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button>
                <h4 class="modal-title" id="myModalLabel">Add New OS</h4>
            </div>
            <form method="post" action="osHome.php"><!-- start form here-->
                <div class="modal-body">
                    <table style="width: 100%" class="table table-bordered" >
                        <tr><th><label>OS Name</label></th>
                            <td colspan="3" ><input type="text" name="newOs_name" class="form-control"></td>
                        </tr>
                        <tr><th><label>Edition</label></th>
                            <td colspan="3" ><input type="text" name="newOs_edition" class="form-control"></td>
                        </tr>
                        <tr><th><label>Version</label></th>
                            <td colspan="3" ><input type="text" name="newOs_version" class="form-control" ></td>
                        </tr>                                       
                    </table>
                </div>
                <div class="modal-footer">
                    <button class="btn btn-danger" data-dismiss="modal">Cancel</button>
                    <input type="submit" name="addNewOs" value="Save Changes" class="btn btn-primary">
                </div>
            </form><!-- end form here-->
        </div>
    </div>
</div>

选项2

<div class="modal fade" id="basicModal" tabindex="-1" role="dialog" aria-labelledby="basicModal" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button>
                <h4 class="modal-title" id="myModalLabel">Add New OS</h4>
            </div>
            <div class="modal-body">
                <form method="post" action="osHome.php" id="myForm"><!-- id = myForm -->
                    <table style="width: 100%" class="table table-bordered" >
                        <tr><th><label>OS Name</label></th>
                            <td colspan="3" ><input type="text" name="newOs_name" class="form-control"></td>
                        </tr>
                        <tr><th><label>Edition</label></th>
                            <td colspan="3" ><input type="text" name="newOs_edition" class="form-control"></td>
                        </tr>
                        <tr><th><label>Version</label></th>
                            <td colspan="3" ><input type="text" name="newOs_version" class="form-control" ></td>
                        </tr>                                       
                    </table>
                </form>
            </div>
            <div class="modal-footer">
                <button class="btn btn-danger" data-dismiss="modal">Cancel</button>
                <input type="submit" name="addNewOs" value="Save Changes" class="btn btn-primary" form="myForm"> <!-- button associated with myform-->
            </div>
        </div>
    </div>
</div>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM