I want to display an image with <img src=...> tag. But the URL of the image is in a variable.
$picadress="http://........";
And I want to do something like this
<img alt="" src=$picadress />
But unfortunately... it fails
I already add ' or "... but still fail 
Is it possible to display the image ? Or is there any workaround to do this?
Thank you very much.


