我正在尝试使用Android应用程序和网站网址向mysql数据库发送php帖子。
但我不知道如何通过网址发布帖子请求。
我试过http://localhost/api/create_product.php?name=chetan&price=2000&description=someDescription
这将返回缺少的必填字段
也许我尝试传递的网址不正确
请帮助我知道如何使用返回JSON成功的URL在数据库中发布帖子。
<?php
/*
* Following code will create a new product row
* All product details are read from HTTP Post Request
*/
// array for JSON response
$response = array();
// check for required fields
if (isset($_POST['name']) && isset($_POST['price']) && isset($_POST['description'])) {
$name = $_POST['name'];
$price = $_POST['price'];
$description = $_POST['description'];
// include db connect class
require_once __DIR__ . '/db_connect.php';
// connecting to db
$db = new DB_CONNECT();
// mysql inserting a new row
$result = mysql_query("INSERT INTO products(name, price, description) VALUES('$name', '$price', '$description')");
// check if row inserted or not
if ($result) {
// successfully inserted into database
$response["success"] = 1;
$response["message"] = "Product successfully created.";
// echoing JSON response
echo json_encode($response);
} else {
// failed to insert row
$response["success"] = 0;
$response["message"] = "Oops! An error occurred.";
// echoing JSON response
echo json_encode($response);
}
} else {
// required field is missing
$response["success"] = 0;
$response["message"] = "Required field(s) is missing";
// echoing JSON response
echo json_encode($response);
}
?>
DB_CONNECT()工作正常,因为我能够成功执行GET查询
答案 0 :(得分:1)
http://localhost/api/create_product.php?name=chetan&price=2000&description=someDescription =&gt;这是一个带有GET参数的请求以及您的声明:
if (isset($_POST['name']) && isset($_POST['price']) && isset($_POST['description'])) {
正在检查POST参数,要么通过$ _GET更改每个$ _POST,要么更改传递参数的方法,因为通常当您提供参数将其放入数据库时它通过POST而不是GET for安全原因。 GET参数用于读取内容而不是插入。