Image not showing when using upload feature

3 posts by 2 authors in: Forums > CMS Builder
Last Post: June 1, 2012   (RSS)

Re: [Mercer Design] Image not showing when using upload feature

By Damon - May 31, 2012

Hi,

I looks like you are probably using this code for the image:

<?php echo $upload['urlPath'] ?>

Try changing it to this:
<img src="<?php echo $upload['urlPath'] ?>" width="<?php echo $upload['width'] ?>" height="<?php echo $upload['height'] ?>" alt="" />

Let me know if that fixes it.
Cheers,
Damon Edis - interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/

Re: [Damon] Image not showing when using upload feature

By MercerDesign - June 1, 2012

BRILLIANT - thank you.