0

我一直在尝试我的 PHP 技能,似乎当我尝试将信息从我的 Android 应用程序发送到 PHP 时,它似乎只发送了参数名称(数据库显示:Lname 作为示例。)到数据库。我们使用 PDO 作为与 MySQL 数据库通信的方式。

这里的编码如下:

$query = "INSERT INTO Customer ( Lname, Fname, Address, City, State, ZIP, Phone, myusername, mypassword ) VALUES ( ':Lname', ':Fname', ':Address', ':City', ':State', ':ZIP', ':Phone', ':myusername', ':mypassword')";

//Again, we need to update our tokens with the actual data:
$query_params = array(
    ':Lname' => $_POST['LName'],
    ':Fname' => $_POST['FName'],
    ':Address' => $_POST['Address'],
    ':City' => $_POST['City'],
    ':State' => $_POST['State'],
    ':ZIP' => $_POST['ZIP'],
    ':Phone' => $_POST['Phone'],
            ':myusername' => $_POST['username'],
            ':mypassword' => $_POST['password']
);

//time to run our query, and create the user
try {
    $stmt   = $db->prepare($query);
    $result = $stmt->execute($query_params);
}
catch (PDOException $ex) {
    // For testing, you could use a die and message. 
    //die("Failed to run query: " . $ex->getMessage());

    //or just use this use this one:
    $response["success"] = 0;
    $response["message"] = $ex->getMessage();
    die(json_encode($response));
}
4

2 回答 2

1

您已在查询字符串中包含文字值。

$query = "INSERT INTO Customer ( Lname, Fname, Address, City, State, ZIP, Phone, myusername, mypassword ) 
VALUES ( ':Lname', ':Fname', ':Address', ':City', ':State', ':ZIP', ':Phone', ':myusername', ':mypassword')";

应该

$query = "INSERT INTO Customer ( Lname, Fname, Address, City, State, ZIP, Phone, myusername, mypassword ) 
VALUES ( :Lname, :Fname, :Address, :City, :State, :ZIP, :Phone, :myusername, :mypassword)";
于 2013-07-22T16:04:17.103 回答
0

您需要从 SQL 值中删除引号,因为它被解释为文字字符串。如果你删除它们,你应该一切都好:)

$query = "INSERT INTO Customer ( Lname, Fname, Address, City, State, ZIP, Phone, myusername, mypassword ) VALUES ( ':Lname', ':Fname', ':Address', ':City', ':State', ':ZIP', ':Phone', ':myusername', ':mypassword')";
于 2013-07-22T16:06:25.270 回答