如何解决此回声错误?在这里只需要一点帮助或一点帮助,如果用户未登录,则无法看到该表,否则如果已登录,则可以看到.....如何解决?
<?php
session_start();
if ( isset( $_SESSION['loggedin'] ) == "0" )
{
echo "You are not logged in.";
}
else {
echo '<table width="90%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">';
echo '<tr>';}
echo ' <td width="6%" align="center" bgcolor="#E6E6E6"><strong>#</strong></td>';
echo '<td width="53%" align="center" bgcolor="#E6E6E6"><strong>Topic</strong></td>';
echo '<td width="15%" align="center" bgcolor="#E6E6E6"><strong>Views</strong></td>';
echo '<td width="13%" align="center" bgcolor="#E6E6E6"><strong>Replies</strong></td>';
echo '<td width="13%" align="center" bgcolor="#E6E6E6"><strong>Date/Time</strong></td>';
echo '</tr>;'
}
?>