Hi,
I am using a template that dynamically calls images using php print. The code to call the image within the .php file is:
img src=<?php print $pic; ?> alt=""
(inside html tags) and then calling image into the page via the browser, I use:
template.php?$pic=1.jpg
which calls 1.jpg and so on for each image.
The problem is, the image displays in template.php as a broken image, and viewing the source shows: img src= alt=""
Is there a reason why this code doesn't display the correct image? What am I missing?
Any help greatly appreciated.
Jonathen