如何在没有javascript的情况下将值从php传递到简单的html?

我正在尝试使用 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,但是由于某种原因它没有替换,有任何指导吗?


侃侃尔雅
浏览 99回答 1
1回答

拉风的咖菲猫

看看引号"和'。您混合了 HTML 和 PHP 之间的引号类型。我建议对 PHP 使用单引号,对 HTML 使用双引号。那么,正确的字符串是:<?php$message = '<h2>Your confirmation link</h2>&nbsp; &nbsp; <p>Click on this <a href="127.0.0.1/ResendVerification.php?&nbsp;&nbsp; &nbsp; passkey=' . $verification_Code . '">link</a> to activate your account</p>';当您对 PHP 使用双引号时,HTML 字符串需要转义引号\",正确的字符串是:<?php$message = "<h2>Your confirmation link</h2>&nbsp; &nbsp; <p>Click on this <a href=\"127.0.0.1/ResendVerification.php?&nbsp;&nbsp; &nbsp; passkey=$verification_Code\">link</a> to activate your account</p>";
打开App,查看更多内容
随时随地看视频慕课网APP