相關(guān)關(guān)鍵詞
關(guān)于我們
最新文章
php實現(xiàn)留言板功能
這個小小的留言板功能適合班級內(nèi)或者公司內(nèi)部之間的討論,對話和留言,非常的方便,更重要的是無需網(wǎng)絡(luò),對于公司管理層來說是非常樂于常見的,
下面是這個留言板的寫法:
1 首先是登錄頁面:
<form action="chuli.php" method="post"> <div style="margin-left: 500px; margin-top: 200px; height: 250px; width: 250px">/*為了把登錄表放到頁面中間,比較美觀*/ <h1>公司內(nèi)部留言板</h1> <div style="margin-top: 20px">用戶名:<input type="text" name="username"/></div><br/> <div>密 碼:<input type="password" name="password"/></div><br/> <div><input type="submit" value="登錄"/></div> </div> </form>