gpt4 book ai didi

php - 将字符串传递给 PHP 文件以查询 SELECT 语句

转载 作者:行者123 更新时间:2023-11-29 03:27:10 25 4
gpt4 key购买 nike

我正在尝试将一个字符串(例如“名称”)传递给我的 PHP 脚本,该脚本需要通过 $_POST 从 Android 应用程序中获取“名称”,然后在 SELECT 查询中使用它并将其传递回安卓应用。

除了我只能将字符串传递给 PHP 脚本但我不能在 SELECT 查询中使用它之外,我已经做好了一切。这是我的代码:

PHP代码:

<?php
include "../dbc.php";
//include "get_id.php";

$value = $_POST["value"];
$response = array();

$q=$dbh->prepare("SELECT * FROM users WHERE user_name = :value");
$q->bindParam(':value', $value);
$q->execute();
while ($row = $q->fetch(PDO::FETCH_ASSOC))
{
$first_name=$row['first_name'];
$last_name=$row['last_name'];
$company_name=$row['company_name'];
$loc=$row['loc'];
$tel=$row['tel'];
$website=$row['website'];
$aboutme=$row['aboutme'];
array_push($response, array("first_name"=>$first_name,"last_name"=>$last_name,"company_name"=>$company_name,"loc"=>$loc,"tel"=>$tel,"website"=>$website,"aboutme"=>$aboutme));
}

echo json_encode(array("server_response"=>$response));
?>

安卓代码:

class GetUserSettings extends AsyncTask<Void,Void,String> {
String json_get_settings_url;
@Override
protected void onPreExecute() {
json_get_settings_url = "http://url.com/json.php";
}

@Override
protected void onProgressUpdate(Void... values) {
super.onProgressUpdate(values);
}

@Override
protected String doInBackground(Void... Voids) {
URL url = null;
try {
url = new URL(json_get_settings_url);
} catch (MalformedURLException e) {
e.printStackTrace();
}
try {
HttpURLConnection httpURLConnection = (HttpURLConnection)url.openConnection();
InputStream inputStream = httpURLConnection.getInputStream();
BufferedReader bufferedReader = new BufferedReader (new InputStreamReader(inputStream));
StringBuilder stringBuilder = new StringBuilder();
while((JSON_STRING = bufferedReader.readLine()) != null) {
stringBuilder.append(JSON_STRING+"\n");
}
bufferedReader.close();
inputStream.close();
httpURLConnection.disconnect();
return stringBuilder.toString().trim();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
@Override
protected void onPostExecute(String JSON_STRING) {
SharedPreferences settings = getSharedPreferences(PREFS_NAME, MODE_PRIVATE);
String value = settings.getString("user_name", "");
//this is where it starts parsing the JSON from the URL
try {
JSONObject jsonResponse = new JSONObject(JSON_STRING);
JSONArray jsonMainNode = jsonResponse.optJSONArray("server_response");

for (int i = 0; i < jsonMainNode.length(); i++) {
JSONObject jsonChildNode = jsonMainNode.getJSONObject(i);
user_name = jsonChildNode.optString(value);
et_user_name.setText(value);
first_name = jsonChildNode.optString("first_name");
et_first_name.setText(first_name);
last_name = jsonChildNode.optString("last_name");
et_last_name.setText(last_name);
company_name = jsonChildNode.optString("company_name");
et_company_name.setText(company_name);
loc = jsonChildNode.optString("loc");
et_loc.setText(loc);
tel = jsonChildNode.optString("tel");
et_tel.setText(tel);
website = jsonChildNode.optString("website");
et_website.setText(website);
aboutme = jsonChildNode.optString("aboutme");
et_aboutme.setText(aboutme);
}
} catch (JSONException e) {
e.printStackTrace();
Toast.makeText(getApplicationContext(),"Something is wrong. Please restart the app or contact us.",Toast.LENGTH_LONG).show();
}
}
}

所以从代码中,如您所见,我正在尝试将字符串“value”传递给我的 PHP 代码,然后将“value”分配给 $value,然后在 SELECT 查询中使用 $value 但我如何才能传递字符串“值”然后执行查询以便我可以使用 JSON 来解析数据?

最佳答案

您可以使用 ContentValues() 将字符串传递给 php 并返回选择查询。

ContentValues values = new Content Values();values.put("字符串",变量);

你可以传递 url 作为

http://example.com/dir/page.php?var=variable

在 PHP 方面

$var = $_GET['变量']: 现在您可以在选择查询中传递此 $var。

希望这对您有所帮助。

关于php - 将字符串传递给 PHP 文件以查询 SELECT 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34573751/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com