Hello,
I have a site that allows image uploads and displayes them with a max width of 300. Like so:
echo '<img src="bandpics/' . $image . '" width="208" >';
This works great and seems to set the portions right if the original pic size is >= 208. But if somebody uploads a pic <= 208, it has to stretch the image and doesnt look good. How can I alter the above code to not resize the image if it is <=208?
Thanks for any help.