它应该打印错误消息,但是会打印:
“ data ['clan_id']!= 0){echo”您已经有一个氏族。“;}?>”
以下是错误的图片:https://i.imgur.com/BtV7i9s.png
我的代码:
<html>
<style>
.createclanbutton {
background-color: green;
color: black;
padding: 3px;
border-radius: 9px;
}
</style>
<body>
<?php
if ($user->data['clan_id'] != 0)
{
echo "You already have a clan.";
}
?>
<br><br>
<form action="">
<h3>Create your own clan.<br><br>
Clan Name: <input type="text" name="ClanName" value="Clan Name"><br><br>
Description:<br> <textarea rows="6" cols="50">Brief description of your clan!
</textarea><br>
<button class="createclanbutton">Create your own clan!</button>
</form>
</body>
</html>
我正在使用phpbb,并在数据库中创建了一个名为“ clan_id”的列,并将其设置为“ 2”以尝试回显错误消息。
答案 0 :(得分:1)
看起来您已将文件另存为.html或其他内容? :)您需要将此文件另存为.php!