如何使用json php mysqli将数据插入数据库?

时间:2014-03-28 16:28:52

标签: php json mysqli

我的问题是我收到的回复都是空的。
在我的subscirbers文件中,我有一个带有函数的类和一个选择所有用户的查询。

在我的评论文件中,我有一个带有函数的类和一个插入注释的查询

  if(isset($_POST['task']) && $_POST['task']=='comment_insert'){    
    $userId = (int)$_POST ['userId'];
    $comment = addslashes($_POST ['comment']);

    $std = new stdClass();
    $std->user= null;
    $std->userId= null;
    $std->comment= null;
    $std->error=false ; 

    require_once( "subscribers.php" );
    require_once( "comments.php" );
    require_once( "db_conx.php" );
    if ( class_exists( 'Comments ' ) && class_exists( 'Subscribers'))

    {   
        $userInfo = Subscribers::getSubscriber($userId);

        if($userId == null)
        {
            $std-> error = true ;
        }


        $commentInfo = Comments::insert($comment, $userId);

        if($commentsInfo != null )
        {
            $std->error = true ;
        }


        $std->user = $userInfo;
        $std->comment = $commentInfo;



    }   
        echo json_encode($std); 



}

else

{
    die;
}

?>

1 个答案:

答案 0 :(得分:-1)

只需将您的对象转换为数组

$array =  (array) $std;
echo json_encode($array);