这是我的 HTML 代码: "/> ";; echo ""; ?> 最佳答案 最-6ren">
gpt4 book ai didi

php - 如何在html页面中使用php和mysql显示数据库中的图像

转载 作者:行者123 更新时间:2023-11-28 02:51:58 24 4
gpt4 key购买 nike

这是我的 php 和 mysql 检索代码

<?php
include_once("config.php");
$image_id = $_GET['image_id'];

$res = mysqli_query($mysqli,"SELECT * FROM image WHERE image_id = $image_id");
while($row = mysqli_fetch_assoc($res))
{
$image=$row['path_txt'];
//echo $image;
$path ="<img src='http://localhost:8080/memes/".$image."' />";
echo $path;

}
?>

这是我的 HTML 代码:

<html> <head> </head> <body> <img src=urlencode("sample.php?image_id=58")/> <img src="<?php include("sample.php?image_id=58");?>"/> <?php echo "<img src= 'localhost:8080/memes/sample.php?image_id=58'/>";; echo "<a href =urlencode("/sample.php?image_id=58")>"; ?> </body> </html>

最佳答案

最好自己创建一个获取图片源的函数然后使用。如下所示。

函数.php

<?php
function getImgSrc ($image_id) {
$res = mysqli_query($mysqli,"SELECT * FROM image WHERE image_id = $image_id LIMIT 0, 1");
$row = mysqli_fetch_assoc($res);
$image=$row['path_txt'];
//echo $image;
$path ="<img src='http://localhost:8080/memes/".$image."' />";
return $path;

}

在您需要显示该图像的 index.php 中。

<?php 
// include functions.php
include 'functions.php';
?>
<img src="<?php echo getImgSrc(58); ?>"/>

关于php - 如何在html页面中使用php和mysql显示数据库中的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39034370/

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