@neu7o
An image link. That would simply be an
<img> tag wrapped in an
<a> tag, right?
In plain PHP code, that might look something like:
-
<?php
-
$image_location = 'http://www.w3.org/2008/site/images/logo-w3c-mobile-lg.png';
-
$url_link = 'http://www.w3.org/';
-
$url_title = "Click here to visit the World Wide Web Consortium";
-
-
echo "<a href=\"{$url_link}\">
-
<img
-
style=\"border: none;\"
-
src=\"{$image_location}\"
-
alt=\"{$url_title}\"
-
title=\"{$url_title}\"
-
>
-
</a>";
-
?>
-
The
style removes the blue border the browse automatically puts around the image.
(I assume you don't want those)
Not sure how this fits into Drupal though. I haven't worked with that one much.