url as a variable
I have had no luck with this all day, someone please help. In the body of my php form I have:
$banner=links_files/image001.gif
<img src="$banner" />
but I do not get my image. I have also tried a few dozen other variations such as
$banner=links_files/image001.gif
<img src="<?echo $banner; ?>">
What am I doing wrong? I just want this to point and display a gif.
|