php留言板程序(適合php初學者) 這是一款簡單的php留言板程序代碼,如果你正學習網站開發,這款留言板源碼可以幫助哦。
php教程留言板程序(適合php初學者)
這是一款簡單的php留言板程序代碼,如果你正學習網站開發,這款留言板源碼可以幫助哦。
?>
<!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=gbk" />
<title>所有留言</title>
<link rel="stylesheet" type="text/css教程" href="style.css" media="all" />
</head><body>
<a href="add.php">發表留言</a>
<?php
require('common.php');
$result = mysql教程_query("select * from gb_content order by id desc");//查詢數據while ($row = mysql_fetch_array($result, mysql_both)) {// 取一條數據
?>
<table width="700" border="0" cellspacing="0" cellpadding="0" class="tb">
<tr>
<td class="bg"><b>[<?php echo htmlentities($row['username'],ent_compat,'utf-8') ?>]</b> 發表於:<?php echo htmlentities($row['insert_time'],ent_compat,'utf-8') ?></td>
</tr>
<tr>
<td><?php echo htmlentities($row['content'],ent_compat,'utf-8') ?></td>
</tr>
<tr>
<td align="right"><a href="edit.php?id=<?php echo $row['id'] ?>">修改</a> <a href="delete.php?id=<?php echo $row['id'] ?>">刪除</a></td>
</tr>
</table>
<?php
}mysql_free_result($result);
?>
</body>
</html>
1 2 3 4