在PHP中处理JSON的后期数据

时间:2015-06-28 14:19:38

标签: php mysql json

我收到JSON帖子数据....

{"split_info":"17076370","customerName":"Lahoti","status":"failed","error_Message":"fail.","paymentId":"17076370","productInfo":"productInfo","customerEmail":"cxxxx.xx@gmail.com","customerPhone":"999999999","merchantTransactionId":"BR121","amount":"19.0","notificationId":"443"}

我使用作为JSON帖子数据收到的merchantTransactionId编写了PHP代码来更新我的数据库。 我的数据库不会更新...... 我的PHP代码如下 请帮忙..

<?php
include("dbconnection.php");
if(isset($_POST))
{
$json_a = json_decode($_POST, true);
 $Id=$json_a['merchantTransactionId'];
 $status="payUMoney";
 mysql_query("UPDATE std SET status= '".$payStatus."' WHERE Id='".$Id."'", $db);
?>

1 个答案:

答案 0 :(得分:2)

你需要读取HTTP请求正文目录,因为$ _POST只提供表单数据,从你试图接收json /应用程序请求的声音?

<?php
include("dbconnection.php");

$json_string = file_get_contents('php://input');

if($json_string !== null)
{
 $json_a = json_decode($json_string, true);
 $Id=$json_a['merchantTransactionId'];
 $status="payUMoney";
 mysql_query("UPDATE std SET status= '".$payStatus."' WHERE Id='".$Id."'", $db);
}
?>

请不要以这种方式生成SQL语句,它们非常不安全,会让您对SQL注入攻击和各种恶意攻击持开放态度。