从不同的页面php中排除页面

时间:2014-04-14 14:24:55

标签: php

我有一个关于如何在IF语句php中排除另一个php页面的问题。 这是我的代码:

   include 'category.php';
     if(isset($_SESSION['ageSearch'])){
      include 'age.php';
      //exclude category.php here; }

有什么建议怎么做?谢谢!

2 个答案:

答案 0 :(得分:4)

只需在category.php结构

中加入else即可
if(isset($_SESSION['ageSearch'])){
    include 'age.php';
}
else{
   include 'category.php';
}

答案 1 :(得分:0)

你为什么不那样做?

if(isset($_SESSION['ageSearch'])){
    include 'age.php';
}
else
{
    include 'category.php';
}