0

我正在为绝对初学者使用 PHP 学习 PHP。按照第 5 章的教程,我遇到了一些奇怪的错误。我正在尝试在数据库中输出条目。当我加载页面时,我得到"Notice: Undefined index: title in /home/craig/public_html/PHP tutorials/simple blog/index.php on line 42"

并且:

Notice: Undefined index: entry in /home/craig/public_html/PHP tutorials/simple blog/index.php on line 43

现在,当我 var_dump($e) 我得到输出:

array(1) { [0]=> array(4) { ["title"]=> string(13) "I like Cheese" [0]=> string(13) "I like Cheese" ["entry"]=> string(17) "this is some text" [1]=> string(17) "this is some text" } }

据我所见,有索引“标题”和“条目”,并且正在提取数据库中的信息。那么,为什么我会得到这些未定义的索引错误?

这是 index.php 中的代码,如果需要,我也可以粘贴 functions.php,但据我所知,它可以正常工作。

<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<?php 
include_once 'inc/functions.inc.php';
include_once 'inc/db.inc.php';

        //open a database connection 
        $db = new PDO(DB_INFO, DB_USER, DB_PASS);

        //Determine if an entry ID was passed in the URL
        $id = (isset($_GET['id'])) ? (int) $_GET['id'] : NULL;

        // load the entries

    $e = retrieveEntries($db, $id);

    //get the fulldisp flag and remove it from the array
    $fulldisp = array_pop($e);

    //saniteze the entry data
    $e = sanitizeData($e);

    ?>
<head>
<meta http-equiv="Content-Type"
content="text/html;charset=utf-8" />
<link rel="stylesheet" href="css/default.css" type="text/css" />
<title> Simple Blog </title>
</head>
<body>
<h1> Simple Blog Application </h1>
<div id="entries">
    <?php 

    // if the full display flag is set, show the entry
    if($fulldisp==1){
    var_dump($e);
    ?>

    <h2> <?php echo $e['title'] ?></h2>
    <p> <?php echo $e['entry']?></p>
    <p class="backlink">
        <a href="./">Back to Latest Entries</a>
        </p>    

        <?php  
    }//end if statement

    //if the full display flag is 0, format linked entry titles 
    else{
        //loop through each entry
        foreach($e as $entry){
        ?>

        <p> <a href="?id=<?php echo $entry['id']?>">
                <?php echo $entry['title'] ?>
        </a>
        </p>
    <?php   
        } //end the foreach loop
    } // end the else
    ?>  




    <p class="backlink">
        <a href="admin.php">Post a new Entry</a>
        </p>
        </div>
    </body>
</html>

无论是要显示一项还是需要运行循环以输出许多项,我都会收到这些错误。非常感谢您的帮助!

4

1 回答 1

0

这是因为 $e 是一个多维数组——它是一个数组数组。在您的 foreach 循环中,$entry 引用多维数组 $e 的每个子数组。在条件语句的第一个分支中,当您确实想要引用 $e 中的第一个数组时,您正在引用多维数组 $e。

试试这个:

if($fulldisp==1){


   $entry=$e[0]; //$entry is now referencing the first entry in $e rather than $e itself
    ?>

    <h2> <?php echo $entry['title'] ?></h2>
    <p> <?php echo $entry['entry']?></p>
    <p class="backlink">
        <a href="./">Back to Latest Entries</a>
        </p>    

        <?php  
}
于 2013-03-10T22:32:30.850 回答