如何在PHP中为echo语句获取Hyperlink

时间:2012-09-28 21:22:22

标签: php html image

我有一段我想要作为链接的PHP代码。

      echo"<img border='1' src='$images[$i]' width='350' height='250'>";

这就是我想出来的

       <a href = "something"> above statement <a>

但这给了我错误。

5 个答案:

答案 0 :(得分:1)

<?php echo "<a href = 'something'><img border='1' src='".$images[$i]."' width='350' height='250'></a>"; ?>

答案 1 :(得分:0)

  echo"<a href=\"something\"><img border='1' src='$images[$i]' width='350' height='250'></a>";

答案 2 :(得分:0)

echo"
    <a href='...'>
       <img border='1' src='{$images[$i]}' width='350' height='250'>
    </a>
";

答案 3 :(得分:0)

    echo "<a href="url" > <img border='1' src='".$images[$i]."' width='350' height='250'> </a>";

OR

    <a href="url" > <?php echo "<img border='1' src='".$images[$i]."' width='350' height='250'>"; ?></a>

答案 4 :(得分:0)

您可以这样使用concatenate dot operator

<?php
echo '<img border="1" width="350" height="250" src="'.$images[$i].'"'>;
?>