gpt4 book ai didi

php - 变量中的文本将被识别但不会显示

转载 作者:行者123 更新时间:2023-11-29 00:46:50 26 4
gpt4 key购买 nike

我有一些奇怪的现象。我有一个变量是一些文本:

rename something;
mkdir a folder;
$msg = "this text should be displayed";
$mail to...

在 html 中我有:

<?php if (!isset($msg)):?>
some inputfileds
<?php endif; ?>

现象是除了不会显示的 $msg 之外,一切正常。奇怪的是,它以前在另一个页面上工作过。该变量将被识别为它,因为在按下提交和 $errors == 0 后输入字段将被隐藏。还有重命名功能、mkdir 和邮件。如果我将 $msg = 更改为 echo ,它将按照应有的方式回显消息。所以我真的不知道这可能有什么问题?

如果有人知道如何解决这个问题,我将不胜感激。非常感谢。

最佳答案

我不知道我是否正确理解了你的查询,但如果你想在 html 中显示 $msg 的值,那么你必须将它放在你的 html 中,例如

<?php if (isset($msg)):?>
<p><?php echo $msg; ?></p>
<!-- some inputfileds -->
<?php endif; ?>

关于php - 变量中的文本将被识别但不会显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10226147/

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