我创建了一个用于添加和查看提醒的 PHP 程序。添加页面有效,但我在正确显示它们时遇到了一些问题。我应该如何编码才能只获取实际数据?另外,我怎么能把它放到 HTML 表中?(即名称、描述和日期列;行是检索到的数据)
谢谢
当我在浏览器中打开文件时,我得到这个输出:
数组 ( [reminderID] => 14 [reminderName] => Test [reminderDescript] => Test_Descript [reminderDate] => 2012 05 7 )
代码:
<?php include 'header.php'; ?>
<?php include 'database.php'; ?>
<div id="content">
<h1>Reminder List</h1>
<table align ="center">
<thead>
<tr>
<td>Name</td>
<td>Description</td>
<td>Date</td>
</tr>
</thead>
<?php
$query = 'SELECT * FROM reminder_event';
$result = mysql_query($query);
while($row = mysql_fetch_assoc($result)) {
print_r($row);
}
?>
</table>
<p><a href='reminder_add.php'>Add Reminder</a></p>
</div>
<?php include 'footer.php'; ?>