1

我想在 PHP 中使用 GET 并且我知道怎么做。唯一的问题是当我开始我的页面时,我没有 ?var=... 。例如我的网站是

http://localhost/q/question.php

在我的代码中是

$num = $_GET['num'];

我想假设如果 $num == NULL 或者没有像上面的链接那样定义。

我将生成一个不同的页面。因为作为下面的示例只是确定我在任何页面中开始问题。

没有 num 变量 = 开始在数组中生成问题。

http://localhost/q/question.php?num=1
4

2 回答 2

5
if(isset($_GET['num')){
header('Location: someotherpage.php');  //redirects user to someotherpage.php
//do something
}
else{
//do something else

}
于 2012-11-03T06:30:28.930 回答
1
<?php
   if(isset($_GET['num'))
   {
     echo "is not null";
   }
  else
  {
    echo "is null";
   }

?>
于 2012-11-03T06:35:27.900 回答