留言板可以說是所有php入門者都會練習的一個小不上的WEB應用程序了,下面我把我寫的一個php留言板實例分享給各位同學,有需要了解的同學可進入參考參考。
1.在你的PHP的根目錄下創建一個名為”msgboard”的文件夾。
在”msgboard”下創建一個“msglist.php”文件
數據表結構大家可直接導入
代碼如下 復制代碼 CREATE TABLE `msgboard` (
msglist.php 文件,包括了留言增加,刪除,修改
代碼如下 復制代碼
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>我的留言板</title>
</head>
<body>
<?php
$username = isset($_REQUEST['username']) ? $_REQUEST['username'] : ''; //姓名
$sex = isset($_REQUEST['sex']) ? intval($_REQUEST['sex']) : 1; //性別
$msg = isset($_REQUEST['msg']) ? $_REQUEST['msg'] : ''; //留言
mysql_connect("127.0.0.1","root","lzy"); //鏈接
mysql_select_db("test"); //選擇數據庫
if(!empty($username) && !empty($msg))
{
mysql_query("INSERT INTO msgboard(username,sex,msg) VALUES('$username','$sex','$msg')");
}
else
{
echo "輸入不正確<br/>";
}
$source = mysql_query("SELECT * FROM msgboard ORDER BY id DESC");
$result = array();
?>
<table border="1" width="1000">
<tr align="center">
<td width="10%">姓名</td>
<td width="10%">性別</td>
<td width="80%">留言內容</td>
</tr>
<tr>
<?php
while ($row = mysql_fetch_array($source))
{
echo '<td>' . $row['username'] . '</td>';
echo '<td>' . ($row['sex'] == 1 ? '男' : '女') . '</td>';
echo '<td>' . $row['msg'] . '</td>';
}
?>
</tr>
</table><p/>
<form action="msglist.php" method="POST">
<table width="1000" align="left">
<tr>
<td width="100%">
姓名:<input type="text" name="username" value=""/>
</td>
</tr>
<tr>
<td width="100%">
性別:男<input type="radio" name="sex" value="1" checked="checked" />
女<input type="radio" name="sex" value="0" />
</td>
</tr>
<tr>
<td width="100%">
請留言:<br/><textarea name="msg" rows="5" cols="100"></textarea>
</td>
</tr>
<tr>
<td width="100%">
<input type="submit" value="提 交" />
</td>
</tr>
</table>
</form>
</body>
</html>
一個php留言板實例下載:http://file.bKjia.c0m/download/2013/06/08/msgboard.rar