我正在尝试使用 php GET Info 更新我的 HTML a ref 标签,但是我似乎无法替换获取值这是 HTML$message = '<h2>Your confirmation link</h2>
<p>Click on this <a href="127.0.0.1/ResendVerification.php?passkey=$verification_Code">link</a> to activate your account</p>';我正在尝试用我已经拥有的实际代码替换 $verification_Code,但是由于某种原因它没有替换,有任何指导吗?
1 回答
拉风的咖菲猫
TA贡献1995条经验 获得超2个赞
看看引号"和'。
您混合了 HTML 和 PHP 之间的引号类型。我建议对 PHP 使用单引号,对 HTML 使用双引号。那么,正确的字符串是:
<?php
$message = '<h2>Your confirmation link</h2>
<p>Click on this <a href="127.0.0.1/ResendVerification.php?
passkey=' . $verification_Code . '">link</a> to activate your account</p>';
当您对 PHP 使用双引号时,HTML 字符串需要转义引号\",正确的字符串是:
<?php
$message = "<h2>Your confirmation link</h2>
<p>Click on this <a href=\"127.0.0.1/ResendVerification.php?
passkey=$verification_Code\">link</a> to activate your account</p>";
- 1 回答
- 0 关注
- 91 浏览
添加回答
举报
0/150
提交
取消