php留言板入門教程,乙個php留言板例項

2021-10-25 21:38:45 字數 1264 閱讀 1919

1.在你的php的根目錄下建立乙個名為」msgboard」的資料夾.在」msgboard」下建立乙個「msglist.php」檔案,資料表結構大家可直接匯入。

例項**如下:

create table `msgboard` (

`id` int(10) not null auto_increment,

`username` varchar(50) character set latin1 not null,

`***` tinyint(1) not null default '1',

`msg` text character set latin1 not null,

primary key (`id`)

) engine=myisam auto_increment=1 default charset=utf8;

$username = isset($_request['username']) ? $_request['username'] : '';   //姓名

$*** = isset($_request['***']) ? intval($_request['***']) : 1;                   //性別

mysql_connect("127.0.0.1","root","lzy");       //鏈結

mysql_select_db("test");                       //選擇資料庫

if(!emptyempty($username) && !emptyempty($msg))

mysql_query("insert into msgboard(username,***,msg) values('$username','$***','$msg')");

else

echo "輸入不正確

";$source = mysql_query("select * from msgboard order by id desc");

$result = array();

姓名性別

while ($row = mysql_fetch_array($source))

echo '

' . $row['username'] . '';

echo '

' . ($row['***'] == 1 ? '男' : '女') . '';

echo '

' . $row['msg'] . '';

姓名:性別:男   

php留言板入門教程,php快速入門筆記

php開發之前的準備 修改host 檔案 windows system32 drivers etc host 自定義多個本機ip網域名稱如f.com y.com 修改wamp bin apache apache2.4.9 conf httpd.conf 檔案在末尾新增如下 可以同時訪問如f.com,...

乙個簡單的PHP留言板

如果你已經有一定程式設計基礎請自行出門左轉 接下來我們就直接開始。首先構建乙個進入的主頁面 這是首頁 此處混編 接下來就是書提交到資料庫,此處對資料進行驗證一下,看是否提交了空資料 展示介面就是將已經寫好的資料,從資料庫中迴圈出來即可。include conn.php perpagenum 5 定義...

PHP製作留言板

首先造乙個登入頁面 上圖 然後來寫處理頁面 session start session儲存資料 include db.class.php 引用類 db new db 造方法 zhang post zhang mi post mi sql select mi from yuangong where z...