I have database where I have to insert a row but first I have to perform a check on pid. I am unable to found the solution kindly help. Here is my php code:
<?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'];
$name = "zone";
$price = 123;
$description = "what";
// 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("IF ((select count(*) from products where pid = 7)= 0)
BEGIN
INSERT INTO products(name, price, description) VALUES('$name',
'$price', '$description');
END
ELSE
BEGIN
END");
// 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);
}
?>
Here is my android code
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("name", name));
params.add(new BasicNameValuePair("price", price));
params.add(new BasicNameValuePair("description", description));
JSONObject jsonObject= new org.test.JSONParser().makeHttpRequest(URL, "POST", params);
try {
int success = jsonObject.getInt(TAG_SUCCESS);
if (success == 1) {
// successfully created product
Log.d("create","created");
// closing this screen
finish();
} else {
// failed to create product
}
} catch (JSONException e) {
e.printStackTrace();
Log.d("exc","exc "+e);
}
return null;
}
public void onPostExecute(String file_url){
pDialog.dismiss();
Product is not inserted and I get the message success 0 oops and error occurred that is $result is not 1. Please help!