Well this is getting into the right direction!
I've replaced the img tag's src with:
Code:
<img src="'.(implode($avauri)).'" />
I've tried adding implode because the original return value of the src would be 'Array'. Now that I added the implode(), the src is the following:
Code:
<img src="1image.php?u=1&dateline=1295535226 width=" 120"="" height="26" "="" border="0" alt="" />
There's '1', which I'd assume is the (second) array element. And it also kind of messed up the entire img tag's attributes.
I guess I'm either doing this wrong, or the Array isn't supposed to be there (thus, $avauri)?
Also, much appreciated for taking your time to response.