用PHP代码关闭HTML标签

时间:2013-10-28 04:34:38

标签: php html

我有以下代码:

  <a class='example-image-link' href='images/<?php echo addslashes($elevations);?>' data-lightbox='example-set' title='Click on the right side of the image to move forward.'><?php echo addslashes($elevations);?></a>

在上面的代码中,<a>标记将关闭php标记?>关闭的位置。 <a>结束"/>“代码在”标题“之后未关闭,但在此处结束:<?php echo addslashes($elevations);?>,即在?之后。

可能的原因是什么?我应该如何纠正?

2 个答案:

答案 0 :(得分:0)

如果您从上面得到错误,那么只需执行以下操作

<?php

echo "<a class='example-image-link' href='images/".addslashes($elevations)."' data-lightbox='example-set' title='Click on the right side of the image to move forward.'>".addslashes($elevations)."</a>";

?>

答案 1 :(得分:0)

我没有得到你所说的,但我的问题可能是你的href标签,请尝试下面

href= "<?php echo "images/".addslashes($elevations);?>"