sql html解码,从sql中查询base64图像并对其进行解码

该博客讲述了如何从SQL查询中获取Base64编码的图片,并在网页上解码显示。作者提到尝试从名为'pictures'的表中选取所有数据,并在PHP中处理解码过程。虽然目前只能显示一张图片,但目标是实现图片的幻灯片展示。博客中提到了JavaScript客户端的Base64编码和解码,并提供了相关资源链接。
摘要由CSDN通过智能技术生成

我试图从base64编码的表格行中拉出图片。我需要将它们解码并显示在网页上。我真的想把它们放到幻灯片中,但这是另一个话题!从sql中查询base64图像并对其进行解码

这是迄今为止

require("config.inc.php");

//initial query

// table name is pictures and table row is picture

$query = "Select * FROM pictures";

//execute query

try {

$stmt = $db->prepare($query);

$result = $stmt->execute($query_params);

}

catch (PDOException $ex) {

$response["success"] = 0;

$response["message"] = "Database Error!";

die(json_encode($response));

}

// Finally, we can retrieve all of the found rows into an array using fetchAll

$rows = $stmt->fetchAll();

if ($rows) {

$response["success"] = 1;

$response["message"] = "Photos Available!";

$response["posts"] = array();

// only 3 rows in table - post_id, username, picture

foreach ($rows as $row) {

$post = array();

$post["post_id"] = $row["post_id"];

$post["username"] = $row["username"];

$post["picture"] = $row["picture"];

//update our repsonse JSON data

array_push($response["posts"], $post);

}

// echoing JSON response

echo json_encode($response);

} else {

$response["success"] = 0;

$response["message"] = "No Photos Available!";

die(json_encode($response));

}

?>

问题是解码的查询。下面是它显示到目前为止

这只是一个画面(后)的表可能有它的50张图片,并且每个都需要进行显示(因此,对于幻灯片的愿望)。这是我的头,我会很感激任何帮助。

2013-07-30

JeffK

+0

这可能会帮助你通过'http:/stackoverflow.com/questions/2820249/base64-encoding-and-decoding-in-client-side-javascript' –

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值