comment_list.html
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>留言板</title>
<link rel="stylesheet" href="./public/css/home.css" />
</head>
<body>
<div id="box">
? <h1>留言板</h1>
? <div class="postbox">
? ? ?<!--<ul class="userbox">-->
? ? ? ? <!--<li>名稱:</li><li class="user_name" ><input type="text" /></li>-->
? ? ? ? <!--<li>郵箱:</li><li class="user_email" ><input type="text" /></li>-->
? ? ? ? <!--<li class="user_post"><input type="submit" class="post_button" value="發(fā)布" /></li>-->
? ? ?<!--</ul>-->
? ? ?<!--<textarea>在此處輸入留言</textarea>-->
? ? ?<form method="post" action="index.php?p=home&c=comment&a=add">
? ? ? ? <ul class="userbox">
? ? ? ? ? ?<li>名稱:</li><li class="user_name"><input type="text" name="poster"></li>
? ? ? ? ? ?<li>郵箱:</li><li class="user_email"><input type="text" name="mail"></li>
? ? ? ? ? ?<li class="user_post"><input type="submit" class="post_button" value="發(fā)布"></li>
? ? ? ? </ul>
? ? ? ? <textarea name="comment" required="required">在此處留言</textarea>
? ? ?</form>
? </div>
? <div class="comment_info">
? ? ?留言數(shù):<?php echo $num; ?>
? ? ?<span class="sort">
? ? ? ? 排序方式:<a href="index.php" <?php if(!isset($_GET['sort'])) echo 'class="curr"';?>>正序</a> <a href="#">倒序</a>
? ? ?</span>
? </div>
? <ul class="comments">
? ? ?<?php foreach($data as $v):?>
? ? ?<li>
? ? ? ? <p>用戶名:<? php echo $v['poster'];?></p>
? ? ? ? <p><?php echo $v['comment'];?></p>
? ? ? ? <p>發(fā)表日期:<?php echo $v['date'];?></p>
? ? ? ? <?php if($v['reply']!==''):?>
? ? ? ? <ul class="comment_reply">
? ? ? ? ? ?<li>
? ? ? ? ? ? ? <p>管理員回復:</p>
? ? ? ? ? ? ? <p><?php echo $v['reply'];?></p>
? ? ? ? ? ?</li>
? ? ? ? </ul>
? ? ? ? <?php endIf;?>
? ? ?</li>
? ? ?<?php endForeach;?>
? ? ?<!--<li>-->
? ? ? ? <!--<p>用戶名:測試者02</p>-->
? ? ? ? <!--<p>這里是留言正文,歡迎來到傳智播客。</p>-->
? ? ? ? <!--<p>發(fā)表日期:2000-00-00 00:00</p>-->
? ? ?<!--</li>-->
? </ul>
? <div class="comments_footer">
? ? ?<a href="#" class="curr">1</a>
? ? ?<a href="#">2</a>
? ? ?<a href="#">3</a>
? </div>
</div>
</body>
</html>