1

我必须在我的 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);

?>

4

1 回答 1

-3

不建议在 json 中传递 blob 数据,使用该图像的 url 来传递响应。

于 2013-09-29T05:10:17.433 回答