我想制作一个 PHP 文件来在我的服务器表中插入数组数据。因为我选择了多个值,所以我从我的 iphone 应用程序中获取了一个数组并创建了 jsonstring,以便在 PHP 文件中发布值并在服务器表中插入数据。我不知道我做错了什么,并且该值没有插入到服务器 DB PHP/MYSQl 中。
我收到错误消息 =“发生错误。”;
我也尝试过使用我想要插入但显示相同错误的相同数组(也使用 json_encode 和解码)数据声明一个变量。
<?php
$response = array();
if (isset($_REQUEST['userid']) && isset($_REQUEST['svalueid'])) {
$userid = $_REQUEST['userid'];
$svalueid = json_decode($_REQUEST['svalueid']);
include 'connect.php';
$db = new DB_CONNECT();
$result = mysql_query("SELECT userid, svalueid FROM users WHERE userid = '$userid'");
if (mysql_num_rows($result) > 0) {
$result = mysql_query("DELETE FROM uses WHERE userid = '$userid'");
foreach($svalueid as $value) {
$result = mysql_query("INSERT INTO users(id, userid, svalueid) VALUES('','$userid', '$value')");
}
} else {
foreach($svalueid as $value) {
$result = mysql_query("INSERT INTO users(id, userid, svalueid) VALUES('','$userid', '$value')");
}
}
if ($result) {
$response["success"] = 1;
$response["message"] = "successful.";
echo json_encode($response);
} else {
$response["success"] = 0;
$response["message"] = "An error occurred.";
echo json_encode($response);
}
} else {
$response["success"] = 0;
$response["message"] = "Field's missing";
echo json_encode($response);
}
?>
为了检查我是否得到正确的字符串,我使用了这个 php 文件..
<?php
$response = array();
$userid = $_REQUEST['userid'];
$test="'svalueid' : [
'0' : 1,
'1' : 2
]";
$xyz = json_encode($test);
$vb = json_decode($test);
$pbk=array("1"=>"abc","2"=>"cck");
$pk=json_encode($pbk);
$ck=json_decode($pk);
include 'db_connect.php';
$db = new DB_CONNECT();
echo "<pre>";
print_r($_REQUEST['svalueid']);
echo "<br>";
print_r($vb);
echo "<br>";
print_r($ck);
echo "<br>";
echo "hi";die;
if ($result) {
$response["success"] = 1;
$response["message"] = "Success.";
echo json_encode($response);
} else {
$response["success"] = 0;
$response["message"] = "An error occurred.";
echo json_encode($response);
}
} else {
$response["success"] = 0;
$response["message"] = "Value is missing";
echo json_encode($response);
}
?>
我在控制台上的应用程序中得到的响应显示了这一点:
response: <pre>{
\"sidselected\" : {
\"0\" : 1,
\"1\" : 2
}
}<br><br>stdClass Object
(
[1] => abc
[2] => cck
)
<br>hi
我在 userid = 1 和 svalueid = "svalueid" : { "0" : 1, "1" : 2 } in jsonString 中的值是这样的
json string going on server is {
"svalueid" : {
"0" : 1,
"1" : 2
}
}
我无法在我的数据库表中插入值 1 和 2。
svalueid 的格式是否正确?请帮助我应该如何增强我的 php 代码。