I have uploaded images to server in a particular folder using upload code in php.
How to get those images to display on my website using php?
Please help me…
I have uploaded images to server in a particular folder using upload code in php.
How to get those images to display on my website using php?
Please help me…
This should work:
http://stackoverflow.com/questions/13188844/displaying-images-in-php
This is how you could do it with php - you would still display the image with the html <img> tag.
echo '<img src="image.jpg">';