php代码从/ images中检索图像

时间:2014-07-20 06:00:07

标签: php mysql image

如你所见,我是初学者。我现在让我的搜索页面从MYSQL中检索信息,但我将图像存储在public_html / images中,并将代码images / something.jpg存储在MYSQL中。我已经尝试过我能在网上找到的东西,但我所做的最好的办法就是让图片破碎。经过大约三个小时的搜索,我决定放弃,并承认我需要帮助。这是我尝试过的最后一件事。我知道这是错的,因为它不起作用。

$img_url = "http://www.mysite.net/public_html/images/"; 
    { 
    echo '<img src="'.$img_url.$result['Images'].'" />'; 
    } 

这对我来说似乎有些道理,所以我很欣赏为什么它错了。感谢

1 个答案:

答案 0 :(得分:0)

public_html文件夹是Apache服务器上Web服务器的入口点,并映射到域的根目录,即内部/public_html/index.php的某个文件夹外部为http://example.org/index.php

因此,我相信您的问题可以通过删除路径中的public_html来解决:

$img_url = "http://www.mysite.net/images/"; 
    { 
      echo '<img src="'.$img_url.$result['Images'].'" />'; 
    }