我必须在我的 android 应用程序中显示来自外部数据库的一些数据,包括图像。我已成功从数据库中获取文本数据。这是我的php代码。现在我需要获取 blob 数据。我怎样才能做到这一点..?
$id=$_POST['ID'];
$db_server = mysql_connect($hostname,$username,$password);
if (!$db_server) die("Unable to connect to MySQL: " . mysql_error());
mysql_select_db($database,$db_server);
$result=mysql_query("select * from names where ID=$id");
while($row=mysql_fetch_assoc($result)){
$output[]=$row;
}
print(json_encode($output));
mysql_close($db_server);
?>