Hi
here is a small section of code which when executed does so without php reporting an error but the image doesnt display. The variables $thumbpath and $currimage both contain valid file paths which when echoed are both C:/web/root/images/thumbs/DSCF2496.JPG. any ideas why the code isnt displaying the file?
<?php
if ($thumbpath) { print ('<img src="$thumbpath">'); } else
{ print ('<img src="$currimage">'); }
?>