为什么我无法显示图像?我一直在尝试这么多不同的代码,但图像仍然没有显示

时间:2016-10-24 12:13:48

标签: php html

为什么我甚至无法显示更新图像并保存?

我有以下代码:

<tr>
            <td>Email Address:</td>
            <td><input type='text' name='textead' value="<?php echo $st_row['emailAddress'] ?>"/></td>
        </tr>
        <tr>
            <td>Profile Picture:</td>
            <td><img src="<?php echo $st_row['picture'] ?>" height="100" width="100"/></td>
        /* this is the problem it cant display image */


<td><input type="file" name="textpic" accept="image/*" /></td>
        </tr>
        <tr>
            <td></td>
            <td><input type='submit' name='btnsave' value='SAVE'></td>
            <td><input type='submit' name='back' value='CANCEL'></td>
        </tr>

1 个答案:

答案 0 :(得分:0)

IMG标签应使用以下格式:

<img src="<?php echo $st_row['picture'] ?>" alt="" />

但是$st_row['picture']应该代表处理上传后的图片路径(这意味着使用PHP代码将上传的文件保存在服务器上)。

如果答案不充分,请提供更多详细信息(如PHP代码..)。