搜尋
首頁後端開發php教程php實作留言板功能的程式碼詳細介紹

  這個小小的留言板功能適合班級內或公司內部之間的討論,對話和留言,非常的方便,更重要的是無需網絡,對於公司管理層來說是非常樂於常見的,

下面是這個留言板的寫法:

1 首先是登入頁面:

<form action="chuli.php" method="post">
    <p style="margin-left: 500px; margin-top: 200px;
     height: 250px; width: 250px">/*为了把登录表放到页面中间,比较美观*/
        <h1 id="公司内部留言板">公司内部留言板</h1>
    <p style="margin-top: 20px">用户名:<input type="text" name="username"/></p><br/>
    <p>密   码:<input type="password" name="password"/></p><br/>
    <p><input type="submit" value="登录"/></p>
    </p>

</form>

2 登入頁面完成後要進入登入處理頁面了,也就是上面提交到的chuli .php

<?php
session_start(); // 登录之后要把所包含登录的页面连接起来,开启session
include("DADB.class.php");

$db=new DADB();

$user=$_POST["username"];
$pwd=$_POST["password"];

$sql="select password from yuangong where username=&#39;{$user}&#39;";

$arr=$db->Query($sql);

if($arr[0][0]==$pwd && !empty($pwd))
{
    $_SESSION["username"]=$user;
    header("location:main.php");
}
else
{
    echo"登录失败";
}

?>

如圖所示,是登入頁面

3.登入完成後是進入主頁面,也就是顯示自己收到的對話內容,以下是設計的資料庫的表格和主頁的程式碼:

<body>
<p><h3><a href="fabu.php">发布信息</a>       
    <a href="tuichu.php">退出系统</a></h3> </p>
<br/><br/>
<h2 id="留言信息">留言信息:</h2>

<table cellpadding="0" cellspacing="0" border="1" width="60%">
    <tr>
        <td>发送人</td>
        <td>接收人</td>
        <td>发送时间</td>
        <td>信息内容</td>
    </tr>
    <?php
    session_start();
    if(empty($_SESSION["username"]))
    {
        header("location:login.php");
    }
    $user=$_SESSION["username"];

    include("DADB.class.php");
    $db=new DADB();
    $sql="select * from liuyan where recever=&#39;$user&#39; or recever=&#39;all&#39; ";

    $arr=$db->Query($sql);
    foreach($arr as $v)
    {   $fjr=uname($v[1]);
        $jsr=uname($v[2]);
        echo"<tr>
        <td>{$fjr}</td> //发送人和接收人要用到姓名,所以这里我们调用了一个方法
        <td>{$jsr}</td>
        <td>{$v[3]}</td>
        <td>{$v[4]}</td>
    </tr>";
    }
    function uname($user)   //运用了uname方法
    {
        global $db;      //要想方法里面也可以用$db 这里用了全局变量
        if($user=="all")
       {
        return "所有人";
       }else
    {
        $sql1="select name from yuangong where username=&#39;{$user}&#39;";
        $att=$db->Query($sql1);
        return $att[0][0];}
    }
    ?>

</table>
</body>

4程式碼寫到這裡,比較重要的部分就完成了,以下是要進入發布資訊頁面了,相當於之前寫的添加的頁面,其處理頁面也是和之前沒什麼區別的,差別在於現在的處理頁面是在用戶登錄的情況下操作的,需要用session把所有的登錄情況下的頁面連結起來


<h1 id="发布信息">发布信息</h1>
<a href="main.php">主页面</a>
<br />
<br />

<?php
session_start();
if(empty($_SESSION["username"]))
{
    header("location:login.php");
    exit;
}

$user = $_SESSION["username"];

include("DADB.class.php");
$db = new DADB();

$shaoyou = "select * from firend where me=&#39;{$user}&#39;";
$ahaoyou = $db->Query($shaoyou);

?>

<form action="fabuchuli.php" method="post">
    <p>接收人:
        <select name="jsr">
            <option value="all">所有人</option>
            <?php
            foreach($ahaoyou as $v)
            {
                $name = uname($v[2]);
                echo "<option value=&#39;{$v[2]}&#39;>{$name}</option>";
            }
            ?>
        </select>
    </p>
    <br />
    <p>
        信息内容:<textarea name="neirong"></textarea>
    </p><br />
    <input type="submit" value="发送" />
</form>
<?php
function uname($user)
{
    global $db;

    if($user=="all")
    {
        return "所有人";
    }
    else
    {
        $sql1 = "select name from yuangong where username=&#39;{$user}&#39;";
        $att = $db->Query($sql1);

        return $att[0][0];
    }
}
?>
</body>

//这是发布页面的代码  和添加页面的代码相似
<?php

<?php
session_start();

$re=$_POST["jsr"];
$comment=$_POST["neirong"];
$time=date("Y-m-d H:i:s"); //获取当前时间

$_SESSION["username"]=$user;

include("DADB.class.php");
$db=new DADB();


$sql="insert into liuyan VALUES (&#39;&#39;,&#39;{$user}&#39;,&#39;{$jsr}&#39;,&#39;{$time}&#39;,&#39;{$comment}&#39;,false)";

if($db->Query($sql,0))
{

        header("location:main.php");
}
else{
    echo"发布失败";
}
?>
?>

一个简单的留言板已经完成了,退出的时候需要清除session 并且返回到登录页面 

//退出页面代码
<?php
session_start();
unset($_SESSION["username"]);
header("location:login.php");

?>

 以上就是php實作留言板功能的程式碼詳細介紹的內容,更多相關內容請關注PHP中文網(www.php.cn)!

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
優化PHP代碼:減少內存使用和執行時間優化PHP代碼:減少內存使用和執行時間May 10, 2025 am 12:04 AM

TooptimizePHPcodeforreducedmemoryusageandexecutiontime,followthesesteps:1)Usereferencesinsteadofcopyinglargedatastructurestoreducememoryconsumption.2)LeveragePHP'sbuilt-infunctionslikearray_mapforfasterexecution.3)Implementcachingmechanisms,suchasAPC

PHP電子郵件:分步發送指南PHP電子郵件:分步發送指南May 09, 2025 am 12:14 AM

phpisusedforsendendemailsduetoitsignegrationwithservermailservicesand andexternalsmtpproviders,自動化intifications andMarketingCampaigns.1)設置設置yourphpenvenvironnvironnvironmentwithaweberswithawebserverserververandphp,確保themailfunctionisenabled.2)useabasicscruct

如何通過PHP發送電子郵件:示例和代碼如何通過PHP發送電子郵件:示例和代碼May 09, 2025 am 12:13 AM

發送電子郵件的最佳方法是使用PHPMailer庫。 1)使用mail()函數簡單但不可靠,可能導致郵件進入垃圾郵件或無法送達。 2)PHPMailer提供更好的控制和可靠性,支持HTML郵件、附件和SMTP認證。 3)確保正確配置SMTP設置並使用加密(如STARTTLS或SSL/TLS)以增強安全性。 4)對於大量郵件,考慮使用郵件隊列系統來優化性能。

高級PHP電子郵件:自定義標題和功能高級PHP電子郵件:自定義標題和功能May 09, 2025 am 12:13 AM

CustomHeadersheadersandAdvancedFeaturesInphpeMailenHanceFunctionalityAndreliability.1)CustomHeadersheadersheadersaddmetadatatatatataatafortrackingandCategorization.2)htmlemailsallowformattingandttinganditive.3)attachmentscanmentscanmentscanbesmentscanbestmentscanbesentscanbesentingslibrarieslibrarieslibrariesliblarikelikephpmailer.4)smtppapapairatienticationaltication enterticationallimpr

使用PHP和SMTP發送電子郵件的指南使用PHP和SMTP發送電子郵件的指南May 09, 2025 am 12:06 AM

使用PHP和SMTP發送郵件可以通過PHPMailer庫實現。 1)安裝並配置PHPMailer,2)設置SMTP服務器細節,3)定義郵件內容,4)發送郵件並處理錯誤。使用此方法可以確保郵件的可靠性和安全性。

使用PHP發送電子郵件的最佳方法是什麼?使用PHP發送電子郵件的最佳方法是什麼?May 08, 2025 am 12:21 AM

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

PHP中依賴注入的最佳實踐PHP中依賴注入的最佳實踐May 08, 2025 am 12:21 AM

使用依賴注入(DI)的原因是它促進了代碼的松耦合、可測試性和可維護性。 1)使用構造函數注入依賴,2)避免使用服務定位器,3)利用依賴注入容器管理依賴,4)通過注入依賴提高測試性,5)避免過度注入依賴,6)考慮DI對性能的影響。

PHP性能調整技巧和技巧PHP性能調整技巧和技巧May 08, 2025 am 12:20 AM

phpperformancetuningiscialbecapeitenhancesspeedandeffice,whatevitalforwebapplications.1)cachingwithapcureduccureducesdatabaseloadprovesrovessetimes.2)優化

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

DVWA

DVWA

Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中

VSCode Windows 64位元 下載

VSCode Windows 64位元 下載

微軟推出的免費、功能強大的一款IDE編輯器

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

將Eclipse與SAP NetWeaver應用伺服器整合。

PhpStorm Mac 版本

PhpStorm Mac 版本

最新(2018.2.1 )專業的PHP整合開發工具