0

摘要:为学校设计一个文件管理系统,目前正在开发的页面将在 HTML 表格中显示下载列表

问题:当拉起我放在网站上的页面时,浏览器上没有显示任何内容。当我检查查看页面源时,没有列出任何内容。不知何故,我的 HTML 都没有被识别,我不知道为什么。

当我将我的 HTML 开始标签移到 php 语句上方时,它是唯一出现在视图页面源代码上的东西。我在这里做错了什么?

**更新:我注释掉了download_list.php文件顶部的 php 并显示了我的 HTML。所以我的 php.ini 显然有问题。

编码:

下载列表.php:

    ini_set( 'display_errors', TRUE );
    error_reporting( E_ALL);

    require_once('database.php');

    // Get all categories
    $query = 'SELECT * FROM file
              ORDER BY fileID';
    $files = $db->query($query);

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<!-- the head section -->
<head>
    <title>My Downloads</title>
    <link rel="stylesheet" type="text/css" href="main.css" /> 
</head>

<body>

    <div id="container">

            <h1>Category List</h1>
        <table>
            <tr>
                <th>Name</th>
                <th>&nbsp;</th>
            </tr>
            <?php foreach ($files as $file) : ?>
            <tr>
                <td><?php echo $file['filename']; ?></td>
                <td>
                    <form action="download_file.php" method="post"
                        id="download_file_form">
                        <input type="hidden" name="category_id"
                               value="<?php echo $file['filename']; ?>"/>
                        <input type="submit" value="Download"/>
                    </form>
                </td>
            </tr>
            <?php endforeach; ?>
    </table>
    <br />

    <h2>Add Category</h2>
    <form action="add_category.php" method="post"
          id="add_category_form">

        <label>Name:</label>
        <input type="input" name="name" />
        <input id="add_category_button" type="submit" value="Add"/>
    </form>
    <br />
    <p><a href="index.php">List Products</a></p>

    </div>

</body>
</html>

数据库.php:

<?php


    mysql_connect("filler.hostica.com", "filler", "filler") or die(mysql_error());
    mysql_select_db("filler") or die(mysql_error());

    exit();

?>
4

2 回答 2

2

Database.php 可能不应该调用exit();

编辑:根据 Sean 的评论:您也在调用 $db->query() 类,但该类不在 database.php 中

于 2012-11-12T05:19:30.270 回答
1

exit();在 database.php 中删除或注释。

于 2012-11-12T05:31:06.637 回答