FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » displaying image
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Re: displaying image [message #181282 is a reply to message #181279] Wed, 01 May 2013 19:19 Go to previous message
Scott Johnson is currently offline  Scott Johnson
Messages: 196
Registered: January 2012
Karma:
Senior Member
On 5/1/2013 9:31 AM, richard wrote:
> http://mroldies.net/showtable.php?year=1960
> Click on first link only.
>
> I am using a 2d array and want to display an image based upon the number
> key of that array.
>
> <?php echo "<img src='$list[1]['cover']'>"; ?>
>
> This line gives a place holder in firefox and in IE.
> It should at least show this image.
> http://mroldies.net/covers/1960-001.jpg
>

I think the problem you are having is you are using a 'complex' var in a
simple parse method (double quotes).

Once the engine hit the first closing array index bracket ']', the var
is done being parsed.

Try concatenate with '.'

<?php echo "<img src='" . $list[1]['cover'] . "'>"; ?>

or my favorite, use the complex type parsing with curlies.

<?php echo "<img src='{$list[1]['cover']}'>"; ?>

Scotty
[Message index]
 
Read Message
Read Message
Read Message
Previous Topic: Got a chuckle and wanted to share.
Next Topic: SoapServer constructor parameters: what is actor uri?
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Thu Nov 28 20:32:40 GMT 2024

Total time taken to generate the page: 0.04163 seconds