我正在寻找一个应用程序,用户可以通过存储在数据库中的应用程序读取信息。使用 sql 查询,我想返回值并将其输出到应用程序上,以便用户在单击“查看注释”按钮时可以阅读它。
保存在 PHP 中的 SQL 查询
<?php
include 'connect.php';
$id = $_POST['UserID'];
$query_search = "select MedicalNotes from PatientRecords where PatientID = 1";
$result = mysql_query($query_search) or die(mysql_error());
$row = mysql_fetch_array($result);
?>
然后,当用户单击“查看注释”按钮时,我想通过应用程序运行此查询。
我是否使用,
httppost = new HttpPost(
"http://database.location.ac.uk/app/queries/notes.php");
?