Jquery值在php中发布以保存在数据库中

时间:2013-12-10 19:49:32

标签: php jquery json posting

我创建了一个jquery,以便知道输入的项目编号是否有效,如果有效,则会有一个文本说它有效,并且用户将在此之后键入所述项目的订单数量,并自动显示项目描述,每单位价格及其总价格(项目价格*数量)

我的问题是。当我声明$ unit_price = $ _POST ['unitprice']时,如何在填写表格后将其保存到我的数据库中;

它有一个未定义索引的错误。这是我的代码

这是我的脚本

        $('#feedback3').load('itemlist.php').show();

    $('#stock_input').keyup(function(){
    $.post('itemlist.php', { stock_number: form.stock_number.value }, 
        function(result) {
            $('#feedback3').html(result.message).show();

            displayTotal(result.price);


    }, 'json');
    });

    $('#quantity').keyup(function(){
    $.post('itemlist.php', { stock_number: form.stock_number.value }, 
        function(result) {
            $('#feedback3').html(result.message).show();
            $('#itemdesc').html(result.desc).show();
            $('#unitprice').html(result.price).show();
            displayTotal(result.price);




    }, 'json');

    }); 
});

这是我的输入类型,但结果是未定义的索引

    <tr>
        <td><text class="normal">Item Number: </text></td> 
        <td><input type="text" class="input" name="stock_number" id="stock_input" > <text id="feedback3"></text></td>
    </tr>
    <tr>
        <td><text class="normal">Unit price : </text></td> 
        <td><span>   $ </span><text id='unitprice' name="unit_price"></text></td>
    </tr>
    <tr>
        <td><text class="normal">Description : </text></td> 
        <td><span id='itemdesc' name='desc'></span></td>
    </tr>
    <tr>
        <td><text class="normal">Quantity: </text></td> 
        <td><input type="text" class="input" name="quantity" id="quantity" ><text id="feedback4"></text></td>
    </tr>
    <tr>
        <td><text class="normal">Size : </text></td> 
        <td><input type="text" class="input" name="size"</td>
    </tr>
    <tr>
        <td><text class="normal">Customize Information : </text></td> 
        <td><textarea cols="40" rows="4" name="custom"> </textarea></td>
    </tr>
    <tr>
        <td><text class="normal">Total Price : </text></td> 
        <td> <span>   $ </span><span id='totalPrice' name='total'></span></td>
    </tr>
</table></fieldset><br>

我想做的是

    if(isset($_POST['submit'];)){
   $unitprice = $_POST['unit_price']; 
    }
//and so on my other input types

谢谢

1 个答案:

答案 0 :(得分:0)

使用jquery / ajax时,我认为你没有$ _POST ['submit']。尝试在php文件中输入

print_r($_POST);die;

看看你得到了什么......