添加到插入header.php的图像的链接

时间:2013-08-21 16:33:22

标签: php image header

        <?php

$image = "image-link.png"; 
$width = 300;
$height = 280;
echo '<img src="'.$image.'" style=width:"' . $width . 'px;height:' . $height . 'px;">';
?>

我只想点击图片,然后转到外部链接。我对如何进行下一步感到困惑

1 个答案:

答案 0 :(得分:2)

echo '<a href="http://stackoverflow.com"><img src="'.$image.'" style=width:"'
  . $width . 'px;height:' . $height . 'px;"></a>';

现在点击图片将转到stackoverflow.com