我正在尝试回复div类<div class="Box">
但不起作用。有人可以帮忙吗?感谢。
echo '<div class="Box">
echo Anchor(T('Edit My Account'), '/profile/edit', FALSE, array('class' => 'Popup EditAccountLink'));
echo "<br />";
echo Anchor(T('Change My Password'), '/profile/password', FALSE, array('class' => 'Popup PasswordLink'));
echo "<br />";
$Inbox = 'Inbox';
$CountUnreadConversations = $Session->User->CountUnreadConversations;
if (is_numeric($CountUnreadConversations) && $CountUnreadConversations > 0)
$Inbox .= ''.$CountUnreadConversations.'';
echo Anchor(T('Inbox'), '/messages/all', 'Inbox');
</div>'
答案 0 :(得分:1)
您尚未使用';
终止该字符串。
echo '<div class="Box">';
答案 1 :(得分:1)
您的第一行和最后一行是错误的,缺少正确的引号,最后一行也有回音。它应该是:
echo '<div class="Box">';
.... rest of code here...
echo '</div>';
答案 2 :(得分:1)
启用error_reporting到E_ALL。继续阅读documentation。在此之后,你知道会发生什么。
答案 3 :(得分:1)
这是一个解析错误。启用error_reporting到E_ALL。