我无法展示图片

时间:2013-08-17 13:23:23

标签: php mysql

这是我的源代码。


<?php
include "koneksi.php";
$datatamu=  mysql_query("select judul_gambar,nama_file from gambar order by judul_gambar asc");
echo "
    <table>
        <tr>
            <th>judul_gambar</th>
            <th>gambar</th>
        </tr>";
        while($rec=mysql_fetch_object($datatamu)){

        echo "<tr>";
        echo "<td>".$rec->judul_gambar."</td>";
        echo "<td";
        echo "<img src='.$rec->nama_file.' alt='.$rec->judul_gambar' title='.$rec->judul_gambar' width='100'>";
        echo "</td>";
        echo "</tr>";
        }"
    </table>";
        mysql_close();
?>

我正在使用源代码在同一目录上创建文件夹gambar。 这是数据库


id_gambar:INT [5]


judul_gambar:VARCHAR [25]


nama_file:VARCHAR [25]


抱歉,如果我的英语不好。 :)

1 个答案:

答案 0 :(得分:2)

在echo语句中,当您没有连接时使用.进行连接意味着.将出现在回显输出中

echo "<img src='".$rec->nama_file."' alt='".$rec->judul_gambar."' title='".$rec->judul_gambar."' width='100'>";