I'm trying to dynamically load a .jpg image into a html form <Img tag
using a PHP variable that holds the filename of the image but no image
is displaying (the file is there and works because if I manually type
in the filename the <Img tag works) - how can I get PHP's variable to
be seen as the filename?
Thanks...
<?php
print '<IMG SRC="$php_photo 2_file" WIDTH="268" HEIGHT="176" BORDER="0"
ALT="">';
?>
using a PHP variable that holds the filename of the image but no image
is displaying (the file is there and works because if I manually type
in the filename the <Img tag works) - how can I get PHP's variable to
be seen as the filename?
Thanks...
<?php
print '<IMG SRC="$php_photo 2_file" WIDTH="268" HEIGHT="176" BORDER="0"
ALT="">';
?>
Comment