我在尝试使用html输出文本对这个PHP代码进行排序时遇到问题,它只是假设错误的路线......例如。文本消息...
为什么会发生这种情况,我的语法似乎没问题,没有遇到错误...提前感谢...唱歌
<body>
<?php if (isset($success) && $success):?>
<h3>success message here.</h3>
<?php else:?>
<h2>Oops!</h2>
<h3>Sorry, there was a problem, please try again.</h3>
<?php endif;?>
</body>
答案 0 :(得分:-3)
尝试
if ($success) {
// Success message here
}