添加PHP代码,以HTML锚标记(Adding php code to html anchor ta

2019-10-18 03:04发布

我试图访问我已经使用锚标记救了我的服务器上(在上传文件夹)上传的图像。 其目的是提供像变焦功能。 变焦工作正常,但图像不显示。 我想是这样的

<?php 
 //$txt is the actual image name and $image is the name saved in uploads folder,$ext is the extension like .jpg or so.
 $image = time().substr(str_replace(" ", "_", $txt), 5).".".$ext; 
?>

在HTML

//image isn't displayed using
<a href = "<?php echo "uploads/$image" ?>"></a> 

但显示如果我使用

<a href = "uploads/image.jpg"></a>.

有没有一种方法,我可以访问标记与PHP代码的图像?

Answer 1:

你错过一个分号和$变量单引号括起来,因此不会扩大。

<a href="uploads/<?php echo $image; ?>">Image</a>

安东尼。



Answer 2:

你没有关闭<?PHP标签。 不喜欢它

 <a href = "<?php echo 'uploads/$image'; ?>"></a> 


文章来源: Adding php code to html anchor tag
标签: php anchor