I save image in a folder. The name of the image is saved in database . But I want to show image using this code .My code is given bellow
<?php if(isset($_GET['id'])) {
include'connect.php';
$query = mysql_query("SELECT * FROM descriptionoftree WHERE id = $_GET[id]");
$update = mysql_fetch_assoc($query);
?>
<div class="form-group">
<label>Image</label>
<?php echo"<img alt='Responsive image' border=\"0\" src=\"image".$update['image']."\" width=\"150\" alt=\"image\" height=\"120\">";
?> I have a form and i want to show image in this form using image path from the database.
but in this form not show the image !