Home>Article>Backend Development> How to implement message board function in php
This article mainly introduces the steps and methods to implement the message board function in PHP. Has very good reference value. Let’s take a look with the editor below
Simple PHP message board production
To make the basic message board function, you need three tables:
Employee table, message table, friend table
First create a login page:
Above picture:
No need to say much, nothing wrong
Then write the processing page:
Query($sql); if(!empty($mi)&&$mi = $arr &&!empty($zhang)) { $_SESSION["zhang"] = $zhang; //即将跳转页面之前,把帐号存到session里面 header("location:zym.php"); } else { echo "登入失败了"; } ?>
The normal login page is just to save the account for a session
Log in and enter the main page
Then comes the main page:
无标题文档 留言板
发件人 | 收件人 | 发布时间 | 内容 |
{$fa} | {$shou} | {$v[3]} | {$v[4]} |
The search condition is to only search for your friends or everyone of all
Also note that the calling db should be set as a global variable
Picture:
The message board needs to publish information:
Publish information page:
Query($sql); //二维数组 return $arr[0][0]; } } ?> 查看信息 注销登入无标题文档 发布信息
Query($shaoyou); ?>
##The last is the processing page for publishing information:
Query($sql,0)) { header("location:zym.php"); } else { echo "发布失败!"; }Picture: I used Xiaohua’s account to send a message to Xiao Ming: So log in to Xiao Ming’s account Picture: Yes, he received this message from Xiaohua The above is the content of this article All content, I hope it will be helpful to everyone's study.
php implementsmessage boardfunction based on session control
Example of using js to implementMessage Board(code provided)
Based on thinkPHP framework to implementMessage BoardMethods
The above is the detailed content of How to implement message board function in php. For more information, please follow other related articles on the PHP Chinese website!