我有一个关于如何在IF语句php中排除另一个php页面的问题。 这是我的代码:
include 'category.php';
if(isset($_SESSION['ageSearch'])){
include 'age.php';
//exclude category.php here; }
有什么建议怎么做?谢谢!
答案 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';
}