PHP MYSQL 显示来自 dB 的图片链接

发布于 2024-12-06 08:58:41 字数 807 浏览 0 评论 0原文

嘿,我有一个名为 Box1 的表,其结构简单:id(increment,primary) imageurl、link。

我想要做的是在我的网站上的 HTML 文件中,将 imageurl 显示到 imgsrc 中,以便图像 URL 在访问该网站时加载图像,

我无法在网上找到具体要查找的内容,并且知道我必须靠近某个地方,这就是我到目前为止在 .php 文件编码中所得到的内容......谢谢。

<?php
    $con = mysql_connect("localhost","data","data");
    if (!$con)
    {
        die('Could not connect: ' . mysql_error());
    }else {

        mysql_select_db("database1", $con);
        $result = mysql_query("SELECT * FROM Box1 ORDER BY id DESC LIMIT 1");

        while($row = mysql_fetch_array($result))
        {
            echo $row['image'];

// NEXT STEP IS TO DISPLAY THE  the IMAGE  EXAMPLE: '<img src code<?php echo 'image'; ?>' >
        }
    }

 mysql_close($con)
?>

如果你能指导我如何做到这一点,那就太棒了,我很困惑如何用 PHP 实现 HTML,谢谢!

Hey all I have a table caleld Box1, with a simple structure of: id(increment,primary) imageurl, link.

What I am looking to do, is on my site in the HTML file, display the imageurl into a imgsrc, so that the Image URL loads the image when going to the site

I cannot find specifically what I am looking for online and know I must be close somewhere, this is what I have so far in my coding for my .php file.... thanks.

<?php
    $con = mysql_connect("localhost","data","data");
    if (!$con)
    {
        die('Could not connect: ' . mysql_error());
    }else {

        mysql_select_db("database1", $con);
        $result = mysql_query("SELECT * FROM Box1 ORDER BY id DESC LIMIT 1");

        while($row = mysql_fetch_array($result))
        {
            echo $row['image'];

// NEXT STEP IS TO DISPLAY THE  the IMAGE  EXAMPLE: '<img src code<?php echo 'image'; ?>' >
        }
    }

 mysql_close($con)
?>

if you could guide me to an exmaple of how to do this, that would be amazing, im so confused how one would implement HTML with PHP, thanks!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

入画浅相思 2024-12-13 08:58:41
<?php

... connect to DB ...
$sql = "SELECT imgurl FROM Box1 WHERE id=XXX";
$result = mysql_query($sql) or die(mysql_error());
$row = mysql_fetch_assoc($result);
?>

<img src="<?php echo $row['imgurl'] ?>" />
<?php

... connect to DB ...
$sql = "SELECT imgurl FROM Box1 WHERE id=XXX";
$result = mysql_query($sql) or die(mysql_error());
$row = mysql_fetch_assoc($result);
?>

<img src="<?php echo $row['imgurl'] ?>" />
同尘 2024-12-13 08:58:41

此外,对于大块 html 来说,熟悉该运算符也很有帮助

echo <<<YOUR_TOKEN_NAME
     <img src="$row['imgurl']" />
      ...misc html and php vars intermixed 
YOUR_TOKEN_NAME;

Also, it is helpful to become familiar with this operator for large chunks of html

echo <<<YOUR_TOKEN_NAME
     <img src="$row['imgurl']" />
      ...misc html and php vars intermixed 
YOUR_TOKEN_NAME;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文