用PHP注意消息

时间:2014-07-26 18:41:12

标签: php

我正在尝试使用php,尝试了解它是如何工作的,并将静态html网站转换为动态php网站,只是为了看看我能否完成它。我设法让它工作,但我得到一个错误说

Notice: Undefined index: page in C:\xampp\htdocs\alt\index.php on line 12

(这是下面代码中的第1行)。 当然,我设法通过在代码中使用和@来显示它,但我仍然想知道我做错了什么......它仍然可以正常工作。

if (!$_GET['page']){
    include 'content/index.inc.php';
}
else {
    $page = htmlspecialchars($_GET['page']);
        $path = 'content/'.$page.'.inc.php';
        if (file_exists('content/'.$page.'.inc.php')){
            include 'content/'.$page.'.inc.php';
        }
        else{
            include 'content/error.inc.php';
        }
}

1 个答案:

答案 0 :(得分:0)

尝试

<?PHP
if(!isset($_GET['page'])) {
    include 'content/index.inc.php;
}