如何打开带有参数的主页面

时间:2016-06-07 20:36:24

标签: php

我的问题可能是一个非常简单的问题。我是php新手。我搜索过,但找不到最佳答案。我的主页是index.php。加载页面时,我想运行带有参数的主页面。例如index.php?simple = 1。

3 个答案:

答案 0 :(得分:1)

您需要两个文件:

<强>的index.php

<?php
header( "Location: main_page.php?simple=111" );
?>

<强> main_page.php

<?php
echo $_GET[ "simple" ];
?>

index.php会使用您想要的参数调用main_page.php

@ Fred-ii-是对的,这是对main_page.php的修复:

<强> main_page.php

<?php
if ( isset( $_GET[ "simple" ] ) )
   echo $_GET[ "simple" ];
?>

答案 1 :(得分:0)

使用$_GET超全球。

if ($_GET['simple'] == '1')
{
  // your code here
}

答案 2 :(得分:0)

你必须检查变量是否先设置,然后获取值(你可以显示没有参数的页面......就像那样:

    if(isset($_GET['simple'])){
        $simple=$_GET['simple'];
        //now simple is the value of parameter 'simple';
        }