作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我有一个MySQL数据库
我有一个名为“图片”的列 id
图片栏存放文件名
文件名对应的文件存放在我的htdocs根目录下
我想显示存储在这些文件名中的图像数据。
下面的代码(终于)起作用了,我的问题是......这是显示图像的最有效方式吗?当我说高效时,我的意思是它是编写代码的最快方法吗..
require_once("database_connect.php");
$getinfo = mysql_query( "SELECT picture FROM historylist ORDER BY date_played LIMIT 0, 1"); // i think this gets the information
$answer = mysql_fetch_array($getinfo); // i think this stores the information into the variable $answer
{
echo "<img src=\"/{$answer['picture']}\" alt=\"\" />";
}
我是一名优秀的程序员,十分优秀!