WXforum.net

Web Weather => Weather Website PHP/AJAX scripting => Topic started by: LeFuet on June 21, 2018, 06:41:10 AM

Title: Picture provided with link in PHP
Post by: LeFuet on June 21, 2018, 06:41:10 AM
Hello community, how can I in PHP "menubar.php / external links", a picture with a link?
Ex.
    <li> <a href="http://www.radio-schwabmuenchen.de/" title="Radio Schwabmünchen"> Radio Schwabmünchen </a> </ li>

to this address should appear a picture with link!
this is the picture:  [ You are not allowed to view attachments ]
the picture is in the folder "logos" and has the name "radio-smue.png"

Hope I can be helped

Recards
Harry
Title: Re: Picture provided with link in PHP
Post by: mcrossley on June 21, 2018, 06:55:22 AM
Something like...
Code: [Select]
<li> <a href="http://www.radio-schwabmuenchen.de/" title="Radio Schwabmünchen"><img src="/logos/radio-smue.png" alt="Description"></a> </ li>
Title: Re: Picture provided with link in PHP
Post by: LeFuet on June 21, 2018, 07:07:44 AM
Thank goodness, so I wanted it!

recards
Harry