2017-10-11 28 views
1
<tr> 
    <td class="text-left">Price:</td> 
    <td><input type="text" placeholder="Price" name="price" value="<?php echo  $result['price'];?>"/></td> 

    </tr> 
    <tr> 
    <td class="text-left">Profile Image:</td> 
    <td><input type="file" name="proimage" value="<img src=upload/<?php echo $result['proimage'];?>" height="50px"/></td> 
    </tr> 

這是我的code.but圖像不查看編輯。在覈心的PHP我需要查看數據庫中添加的編輯字段中的圖像

+0

什麼錯誤你得到在你的瀏覽器的控制檯?這是一個404錯誤的圖像? –

+0

你不能將img標籤嵌入到文件輸入值屬性 – ArtOsi

+0

它顯示沒有文件被選中。我想要顯示的圖像在一個字段進行編輯 –

回答

1
<input type="file" name="proimage" value="<img src=upload/<?php echo $result['proimage'];?>" height="50px"/> 
            ^
           This is invalid 
        Like this you can't display image 

你只需要<img>標籤,以dB顯示已有圖像

<img src="upload/<?php echo $result['proimage'];?>" height="42" width="42" > 

而對於表格,您可以有,與值輸入標籤,

<!-- since already there in db make it hidden --> 
<input type="hidden" name="proimage" value="<?php echo $result['proimage'];?>" /> 
+0

雅我試過this.but當時我不能選擇另一個圖像進行更新。 –

+0

好fine.india拍攝圖像我可以從數據庫imagename.then如何我會重新寫這個代碼? –

相關問題