0

我一直在设计一些网站。我一直在尝试使用多个 if(isset($_GET['type']) == 'page') { } 等等函数。他们似乎没有工作有人可以启发我吗?

<?php
    if(isset($_GET['type']) == 'all') {
    // View All Pages Title
    echo '<h3>View All Pages</h3>';

        if($control1 == 'all') {
            echo '<table width="100%" border="0">';
            echo '<tr>';
            echo '<th scope="col">Page Name</th>';
            echo '<th scope="col">Time Created</th>';
            echo '<th scope="col">View</th>';
            echo '<th scope="col">Edit</th>';
            echo '<th scope="col">Delete</th>';
            echo '</tr>';                 
            $qry=mysql_query("SELECT * FROM page", $con);
            if(!$qry) {
                die("Query Failed: ". mysql_error());
        }
        while($row=mysql_fetch_array($qry)) {
            echo '<tr>';
            echo '<td height="38">'.$row['page_title'].'</td>';
            echo '<td>'.$row['page_updated'].'</td>';
            echo '<td><a href="page.php?view=page&page='.$row['page_link'].'">View</a></td>';
            echo '<td><a href="page.php?edit='.$row['page_link'].'">Edit</td>';
            echo '<td><a href="page.php?delete='.$row['id'].'">Delete</td>';
            echo '</tr>';
        }     
        echo '</table>';
    }
    else {
        echo "<p>You can't view all the pages. Your Account does not hold the correct priorirty</p>";   
    }
}
elseif(isset($_GET['type']) == 'add') {
    // Add New Page Title
    echo '<h3>Add New Page</h3>';
        if($control1 == 'all') {
            echo '<p><a href="pages.php?type=add&add=control" target="new">Click Here to add a new page</a></p>';
    }
    else {
        echo "<p>You can't add new pages. Your Account does not hold the correct priority.</p>";
    }
}
elseif(isset($_GET['type']) == 'edit') {
    // Edit Pages Title
    echo '<h3>Edit a Page</h3>';
        if($control1 == 'all') {
            echo '<table width="100%" border="0">';
            echo '<tr>';
            echo '<th scope="col">Page Name</th>';
            echo '<th scope="col">Edit</th>';
            echo '</tr>';
            $qry=mysql_query("SELECT * FROM page", $con);
                if(!$qry) {
                    die("Query Failed: ". mysql_error());
            }
            while($row=mysql_fetch_array($qry)) {
                echo '<tr>';
                echo '<td height="38">'.$row['page_title'].'</td>';
                echo '<td><a href="page.php?edit='.$row['page_link'].'">Edit</td>';
                echo '</tr>';
            }
            echo '</table>';
        }
        else {
            echo "<p>You can't edit any pages. Your Account does not hold the correct priority </p>";
        }
    }
?>

这是确切的代码。如果您能解释我可以做些什么来修复它,将不胜感激!提前致谢!

4

5 回答 5

2

isset($_GET['type'])返回一个布尔值,因此如果将该布尔值与任何不同的布尔值 ( isset($_GET['type']) == 'all') 进行比较,它将返回 false。

你应该做

if ( isset($_GET['type']) && $_GET['type'] == 'all' ) { // code }
于 2013-02-23T20:34:01.487 回答
0

应该是这样的

if(isset($_GET['type']) && $_GET['type'] == 'page')
于 2013-02-23T20:34:01.393 回答
0

isset返回布尔值:真或假。因此您的代码:

if(isset($_GET['type']) == 'page')

不会工作。您可以像这样更改它:

if(isset($_GET['type']) and $_GET['type'] == 'page')
于 2013-02-23T20:34:06.650 回答
0

问题是该isset()函数仅返回TRUEorFALSE并且您正在将其与字符串进行比较。就这样使用它:

if (isset($_GET['type']) {
   if ($_GET['type'] == 'page') {
      //...
   } elseif($_GET['type'] == 'add') {
      //and so on...
   }
}

最好将issettest 放在开头,这样您就不会在每个if语句中都检查它。

于 2013-02-23T20:36:03.013 回答
0

正如我所看到的,isset() 正在返回一个布尔值(真/假),您将其与“all”、“add”等进行比较。那不是你想要的。

你可以这样做:

if (isset($_GET['type']) && $_GET['type'] == "all") {
    #your code here
}
于 2013-02-23T20:36:58.670 回答