摘要:为学校设计文件管理系统,目前正在显示HTML表格中下载列表的页面上
问题:拉出我放入网站的页面时,浏览器上没有任何内容显示。当我检查查看页面源时,没有列出任何内容。不知怎的,我的HTML都没有得到认可,我不知道为什么。
当我将HTML开头标记移到php语句上方时,它是唯一出现在视图页面源代码的内容。我在这里做错了什么?
**更新:我在download_list.php
文件的顶部注释掉了php并显示了我的HTML。所以我的php显然有些问题。
代码:
download_list.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> </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>
database.php:
<?php
mysql_connect("filler.hostica.com", "filler", "filler") or die(mysql_error());
mysql_select_db("filler") or die(mysql_error());
exit();
?>
答案 0 :(得分:2)
Database.php可能不应该调用exit();
编辑:来自Sean的评论:你也在调用类$ db-&gt; query(),但该类不在database.php中
答案 1 :(得分:1)
删除或评论database.php中的exit();
。