根据条件加载php页面

时间:2012-07-03 12:23:29

标签: php conditional

我有一个index.php文件,其中包含2个包含的文件

require("stats.php");
require("stats_encry.php");
  1. stats.php,它有一些变量声明。
  2. stats_encry.php,它有另一组变量声明。
  3. 现在,如果用户只是通过搜索转到index.php(通过访问mysite.com/root/index.php)或直接我希望索引加载stats_encry.php

    但是如果用户转到index.php?auth = jHh87fBinJ0Nj1EcDPOPxeXQe我想加载stats.php而不是stats_encry.php

    这个想法是为了防止有人看到某些内容,如果他们意外地在index.php页面中结束。因此,如果我给某人索引文件的特定网址,并在最后添加一个值,他应该能够看到内容(将通过stats.php加载)

    我如何做index.php?非常感谢您的帮助..

1 个答案:

答案 0 :(得分:0)

您可以查看$_GET

if (isset($_GET['auth'])
{
  require 'stats_encry.php';
}
else
{
  require 'stats.php';
}