News新闻

业界新闻动态、技术前沿
Who are we?

您的位置:首页      乐道系统FAQ      php实现留言板功能

php实现留言板功能

发布日期:2017-03-05 00:00:00 73

这个小小的留言板功能适合班级内或者公司内部之间的讨论,对话和留言,非常的方便,更重要的是无需网络,对于公司管理层来说是非常乐于常见的,

下面是这个留言板的写法:

1 首先是登录页面:

<form action="chuli.php" method="post">
 <div style="margin-left: 500px; margin-top: 200px;
  height: 250px; width: 250px">/*为了把登录表放到页面中间,比较美观*/
  <h1>公司内部留言板</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>