dongxu0690 2019-05-05 03:29
浏览 11
已采纳

我如何用php显示哪些图像已经在输入类型文件中上传?

I have database structure as such for image that it stores it name and moves upload to a uploads directory via move_uploaded_file(). I have a page where people can edit what they have uploaded to that specific post. Commonly it is done via giving an value for input but what ever I put inside input is not being displayed. Basically I wants to show which image is uploaded with that specific post.

Html (doesn't works )

   <input class="" value="<?php echo $row['post_image'] ?>" type="file" id="addPost_post_image" name="addPost_post_image">

echo $row['post_image'] shows which image name is stored. and is giving right info.

Image is placed under a folder uploads.

  • 写回答

1条回答 默认 最新

  • duanji5569 2019-05-05 03:46
    关注

    Try putting <img src="uploads/<?php echo $row['post_image'] ?>"> next to input field. I assume you have an image name saved in the database row post_image. If not then get name from basename($_FILES["addPost_post_image"]["name"]);.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部