gpt4 book ai didi

javascript - 在 PHP 中运行 html 代码 if

转载 作者:行者123 更新时间:2023-11-28 11:16:32 26 4
gpt4 key购买 nike

我有这个 PHP 代码,我想要它,以便我可以在 PHP if 语句中运行一些 HTMl 代码。

 if ($_GET['report'] == "success")
{

RUN HTML CODE HERE

} else if ($_GET['report'] == "fail") {

echo 'Error';


}

HTML 代码:

      <li>
<div class="notification success">
<p>Success Notification</p>
<a href="javascript:;" class="close">&times;</a>
</div>
</li>

最佳答案

<?php
if ($_GET['report'] == "success") {
?>
<li>
<div class="notification success">
<p>Success Notification</p>
<a href="javascript:;" class="close">&times;</a>
</div>
</li>
<?php
} elseif ($_GET['report'] == "fail") {
echo 'Error';
}
?>

关于javascript - 在 PHP 中运行 html 代码 if,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21170452/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com