Image shows up on one CFoutput and not another
Good Morning,
I have a situation, i have a folder in my web directory that has subfolders and more subfolders. Each image folder represents a product catagory and the subfolder within the catagory folder represents image subcatagories. for example The Hats folder have subfolders or subcatagories entitled caps, beret, tams, etc. The Scarves folder has subfolders or subcatagories entitled neck_scarf, head_scarf, Shoulder_scarf etc. My mysql database only stores the text file path i.e. /image/Categories/Hats/Caps/item 6.JPG or /image/Categories/scarves/neck_scarves/item23.JPG. Whenever i try to cfoutput the image filepath within an image placeholder in dreamweaver it works just fine rendering the image catagory/subcatagory on some pages but do not display images from other catagories/subcatagories on other pages. Is there a standard way to output images? Below is the syntax illustrating what I'm using...
<img src="<cfoutput>./#product.proimage#</cfoutput>" alt="" name="proimage" width="358" height="477" class="whiteBorder" />
<cfoutput><img src="./#product.proimage#" alt="" name="proimage" width="186" height="247" /></cfoutput>
