1

私は自分のAndroidアプリに、使用しているmySqlDBと通信するためのphpファイルを使用しています。INSERTクエリを使用したとき、phpはうまく機能しましたが、SELECTクエリを追加したとき、JSONをアプリに戻すことができませんでした。重要なのは、データベースに行を追加した後、新しい行のIDを返したいということです。idはauto-incrementを使用したintです。

これが私のPHPコードです:

<?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['lat']) && isset($_POST['lon']) && isset($_POST['alt'])) {

$name = $_POST['lat'];
$price = $_POST['lon'];
$description = $_POST['alt'];

// 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 sits(lat, lon, alt) VALUES($name, $price, $description)");

// check if row inserted or not
if ($result) {
    // successfully inserted into database
    $response["success"] = 1;
    $response["message"] = "sit created.";
    $result2 = mysql_query("SELECT id FROM sits ORDER BY id DESC LIMIT 1")
    while($row = mysql_fetch_array($result2))
    {
       $response["id"]=$row['id'];
    }
    // 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);
}
?>
4

1 に答える 1

1

そのためには間違いなくmysql_insert_id()が必要です。SELECTクエリは不要です。ドキュメントの状態:

戻り値

成功時に前のクエリによってAUTO_INCREMENT列に対して生成されたID。前のクエリがAUTO_INCREMENT値を生成しない場合は0、MySQL接続が確立されていない場合はFALSE。

if ($result) {
    // successfully inserted into database
    $response["success"] = 1;
    $response["message"] = "sit created.";
    $response["id"] = mysql_insert_id();
    // echoing JSON response
    echo json_encode($response);
}
于 2012-10-03T22:46:28.867 に答える