Quote:
Originally Posted by coldturkey
"<img src='images/a+.gif'>"
|
Is 'a' a string variable or the literal name of the file?
If it's the name of the file, you need
Code:
"<img src='images/a.gif'>"
If it's a string you need
Code:
"<img src='images/"+a+".gif'>"
|