要将PHP变量值设置为文件
$old_image_path = $row['image'];
我想将$ old_image_path设置为文件,但是它不起作用
<label for="image" class="pull-right">Student Pic</label>
<input type="file" value="<?=$old_image_path?>" name="image" id="image" required="required">
</div>
答案 0 :(得分:1)
如果要显示旧图像,请将图像源路径放在img标签的src参数下。输入类型“文件”用于选择文件e。 G。用于将文件上传到目标位置。
<img src="<?php echo $old_image_path; ?>" name="image" id="image" required />