从类中调用的bootstrap模式内的表单不提交

时间:2015-08-26 07:18:01

标签: php json twitter-bootstrap

我在一个bootstrap模式中有一个表单,它从类调用并由表中的按钮触发。问题是表单没有提交。

这是我的班级( localhost / project / includes / func / function.php

class product{
    function selectProducts($conn){
            $select_prod_query= "SELECT * FROM `tbl_products` ORDER BY `prod_id` DESC";
            $select_prod_query_result = $conn->query($select_prod_query) or die("Unable to view products. Press F5 to retry!");
            while($row=$select_prod_query_result->fetch_assoc()){
                if($row['prod_img']!="no image available"){
                    $row['prod_img'] = "<a href='#' data-featherlight='".$row['prod_img']."'><img src='".$row['prod_img']."' height='50px' width='auto'></a>";
                }
                else{
                    $row['prod_img']="<img src='includes/img/no_image.png' height='50px' width='auto'>";
                }
                if($row['prod_description']==NULL){
                    $row['prod_description']="No description";
                }
                $option_html = "
                <button type='button' data-toggle='modal' data-target='#editproduct".$row['prod_id']."' class='btn btn-primary btn-xs'><span class='glyphicon glyphicon-edit'></span>&nbsp;Edit</button>
                <div class='modal fade' id='editproduct".$row['prod_id']."' role='modal' aria-labeledby='editproduct".$row['prod_id']."label'>
                    <div class='modal-dialog' role='document'>
                        <div class='modal-content'>
                            <div class='modal-header'>
                                <button type='button' class='close' data-dismiss='modal' aria-label='Close'><span aria-hidden='true'></span>&times;</button>
                                <h4>Edit Product #".$row['prod_id']."</h4>
                            </div>
                            <div class='modal-body'>
                                <form action='http://localhost/xampp/wci-jpms_version_4/index.php' method='POST'>
                                    <label class='label label-primary' for='prod_name'>Product Name</label>
                                    <input type='text' name='prod_name' value='".$row['prod_name']."' class='form-control' required><br>
                                    <label class='label label-primary' for='prod_category'>Product Category</label>
                                    <input type='text' name='prod_category' value='".$row['prod_category']."' class='form-control' required><br>
                                    <label class='label label-primary' for='prod_description'>Product Description</label>
                                    <input type='text' name='prod_description' value='".$row['prod_description']."' class='form-control'><br>
                            </div>
                            <div class='modal-footer'>
                                <button type='button' class='btn btn-danger' data-dismiss='modal' aria-label='Close'>Close</button>
                                <button type='submit' class='btn btn-success' name='btn_edit_product'>Save</button></form>
                            </div>
                        </div>
                    </div>
                </div>";
                $prod_data = array('prod_id'=>$row['prod_id'], 'prod_name'=>$row['prod_name'], 'prod_category'=>$row['prod_category'], 'prod_img'=>$row['prod_img'], 'prod_description'=>$row['prod_description'], 'prod_date_added'=>$row['prod_date_added'], 'option'=>$option_html);
                $prod_data_arr[] = $prod_data;
            }
            return json_encode($prod_data_arr);
}

因为我使用了Bootstrap-table library,所以我必须将数据检索为JSON。

本地主机/项目/包括/ JSON / product_json.php

<?php
namespace wci_jpms;
require("../func/function.php");
$obj_wci_jpms_db = new wci_jpms_db();
$objProduct = new product();
$conn = $obj_wci_jpms_db->connect();
echo $objProduct->selectProducts($conn);
$obj_wci_jpms_db->close($conn);
?>

这是我的 index.php

<table data-toggle="table" id="table" 
    data-url="includes/json/product_json.php" 
    data-side-pagination="client" 
    data-show-refresh="true" 
    data-page-list = "[5, 10, 20, 50, 100, 200, 500, ALL]" 
    data-pagination="true" 
    data-search="true" 
    data-search-time-out="600" 
    data-height="500"
    data-striped="true" 
    data-pagination-first-text="<< First" 
    data-pagination-pre-text="< Prev" 
    data-pagination-next-text="Next >" 
    data-pagination-last-text="Last >>">
        <thead>
            <th data-field="prod_id" data-sortable="true" data-valign="middle">Product ID</th>
            <th data-field="prod_name" data-sortable="true" data-valign="middle">Product Name</th>
            <th data-field="prod_category" data-sortable="true" data-valign="middle">Product Category</th>
            <th data-field="prod_img" data-searchable="false" data-valign="middle">Product Image</th>
            <th data-field="prod_description" data-searchable="false" data-valign="middle">Product Description</th>
            <th data-field="prod_date_added" data-searchable="false" data-valign="middle">Date Added</th>
            <th data-field="option" data-searchable="false" data-valign="middle">Option</th>
        </thead>
</table>

我的代码有什么问题吗?谢谢! :d

1 个答案:

答案 0 :(得分:0)

表格标签不能这样放置,请将其更改为:

也可以使用“index.php”代替“http://localhost/xampp/wci-jpms_version_4/index.php

 <form action='index.php' method='POST'>
        <div class='modal-body'>
        ...
        </div>
        <div class="modal-footer">
         ...
        </div>
    </form>

我认为这应该可以解决问题。

相关问题