0

我有这段代码,它向登录用户显示特定内容。但是使用这个我不能在页面上包含其他 php 文件。反正有没有重写这个,所以我可以使用包含函数。

<?php
   if($_SESSION['id'])
      echo '<div id="center" class="column">center here</div>
            <div id="left" class="column">leftbar here</div>
            <div id="right" class="column">rightbar here</div>';
   else
      echo '<h1>Staff please, <a href="index.php">login</a> 
            before accessing this page,   no access to students.</h1>';
?>

目前我无法在上面写着“center here”、“leftbar here”和“rightbar here”的地方输入:

`<?php include("center.php"); ?>`

我对所有这些东西都是新手,所以不要太复杂,谢谢!

4

1 回答 1

0

如果我理解正确应该是这样的:

<?php
       if($_SESSION['id'])
          echo '<div id="center" class="column">';
               include("center.php");
          echo'</div>
                <div id="left" class="column">';
              include("leftbar.php");
         echo'</div>
                <div id="right" class="column">';
             include("rightbar.php");
          echo '</div>';
       else
          echo '<h1>Staff please, <a href="index.php">login</a> 
                before accessing this page,   no access to students.</h1>';
?>
于 2013-03-14T21:08:09.087 回答