如何使用get方法在我的用户cp中使用编辑模式

时间:2014-04-19 03:21:29

标签: php

所以我有一个get方法从URL中检索信息,如此

$editmode = $_GET['edit'];

这是我遇到基于这些网址变体的正确重定向的问题

... / usercp.php - >继续重定向我,然后我的浏览器说这是一个重定向问题

... / usercp.php?edit = - >与上面提到的相同

if(!isset($editmode)){
    header('Location: home.php');
}elseif($editmode != 1){
    header('Location: home.php');
}else{
   //Page Content
}

代码位于usercp.php

1 个答案:

答案 0 :(得分:0)

尝试

<?php
$editmode = $_GET['edit'];
if (isset($editmode)===false) {
    header('Location: home.php');
}else if ($editmode != 1){
    header('Location: home.php');
}else{
   //Page Content
}
?>