If I have the path to an image stored in $thumbPath
and I put that as the img tag's src it strips the end "/" from the tag. Does anyone have any ideas about this?
<img src="<?php echo $thumbPath; ?>" />
// <img src="path/to/file/foo.jpg">
Thanks
It seems very unlikely that this is the location of the problem. "echo" is not semantically aware. It's much more likely that the error exists in whatever code is generating $thumbPath
.