-1

我有以下代码:

  <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>结束的"/>" 标记不会在 "title" 之后关闭,而是在此处关闭:<?php echo addslashes($elevations);?>即在 ? 之后。

可能的原因是什么,我应该如何纠正这个问题?

4

2 回答 2

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>";

?>
于 2013-10-28T04:46:28.810 回答
0

我不明白你在说什么,但我的问题可能在你的 href 标签中,试试下面

href= "<?php echo "images/".addslashes($elevations);?>"  
于 2013-10-28T04:46:29.370 回答