javascript - show image name through browse field in php -
how can show image name through browse field. sorry that, new in php. use code, it's not working
<input id="photo" type="file" value="<?php echo $results['image'];?>" class="form-control" name="image" />
you can not show image on input field.
what can is:
<img src="allyourdomainurl/<?php echo $results['image'];?>" />
that show real image user.
Comments
Post a Comment