PHP文件连接到mysql -need以添加其他项目

时间:2016-01-09 17:56:04

标签: php mysql

我有一个新手问题。我想在下面的php文件中添加其他项目。 item_name工作正常并正确插入。我将订单添加为另一个条目,但是使用下面的代码我得到了错误的成功。它说数据输入成功,但数据库没有更新。有人可以看看并指出我的错误在哪里吗?

<?php
error_reporting(0);
include("db_config.php");

// array for JSON response
$response = array();

if( !(empty($_POST['item_name'])))
if( !(empty($_POST['order'])))

{
    $item_name=$_POST['item_name'];
    $order=$_POST['order'];

    $result = mysql_query("INSERT INTO myorder(id,item,order) VALUES('','$item_name','$order')");    

    if($result>0){
           $response["success"] = 1;
         }    
     else{
           $response["success"] = 0;
         }
     // echoing JSON response
     echo json_encode($response);
}

?>

0 个答案:

没有答案