PHP開發 小型論壇教程之回覆...登入

PHP開發 小型論壇教程之回覆-1

我們的回應頁面也採用了<table>表格+css樣式進行頁面佈局

最終的頁面效果如下圖

8.jpg




############## #######程式碼如下#########
<!DOCTYPE html>
<html lang="en">
        <head>
        <meta charset="UTF-8">
        <title>回复</title>
        <style>
.title{
    background-color: #B10707;
    color: white;
}
.sub{
    text-align: center;
}
.but{
    background-color: #B10707;
    width: 90px;
    height: 40px;
    font-size: 15px;
    color: white;
    border: none;
}
input{
    width: 250px;
    height: 25px;
}
.right{
    margin-left: 10px;
}
</style>
            <script type="text/javascript">
                function checkinput()
                {
                    if(myform.reply_author.value=="")
                    {
                        alert("请输入你的昵称");
                        myform.reply_author.focus();
                        return false;
                    }
                    if (myform.reply.value=="")
                    {
                        alert("请输入你想回复的内容");
                        myform.reply.focus();
                        return false;
                    }
                }
            </script>
</head>
<body>
<form method="post" action="reply_post.php?id=<?php echo $_GET['id']; ?>" onsubmit=" return checkinput();" name="myform">
        <table width="500px" border="1" cellpadding="8" cellspacing="0" align="center">
        <tr class="title">
        <td colspan="2">
        回复帖子<span class="right">[<a style="color: white" href="forums.php">返回</a> ]</span>
</td>
</tr>
<tr>
<td width="100px">回复人</td>
        <td><input type="text" name="reply_author"></td>
        </tr>
        <tr>
        <tr>
        <td width="100px">回复内容</td>
        <td><textarea cols="43" rows="10" name="reply">
        </textarea></td>
        </tr>
        <tr class="sub">
        <td colspan="2">
        <input type="submit" value="快速回复" class="but">
        <input type="reset" value="重置" class="but">
        </td>
        </tr>
        </table>
        </form>
        </body>
        </html>
###下一步將我們回覆的內容提交到reply_post.php頁面進行資料處理############ ##########下一節
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>回复</title> <style> .title{ background-color: #B10707; color: white; } .sub{ text-align: center; } .but{ background-color: #B10707; width: 90px; height: 40px; font-size: 15px; color: white; border: none; } input{ width: 250px; height: 25px; } .right{ margin-left: 10px; } </style> <script type="text/javascript"> function checkinput() { if(myform.reply_author.value=="") { alert("请输入你的昵称"); myform.reply_author.focus(); return false; } if (myform.reply.value=="") { alert("请输入你想回复的内容"); myform.reply.focus(); return false; } } </script> </head> <body> <form method="post" action="reply_post.php?id=<?php echo $_GET['id']; ?>" onsubmit=" return checkinput();" name="myform"> <table width="500px" border="1" cellpadding="8" cellspacing="0" align="center"> <tr class="title"> <td colspan="2"> 回复帖子<span class="right">[<a style="color: white" href="forums.php">返回</a> ]</span> </td> </tr> <tr> <td width="100px">回复人</td> <td><input type="text" name="reply_author"></td> </tr> <tr> <tr> <td width="100px">回复内容</td> <td><textarea cols="43" rows="10" name="reply"> </textarea></td> </tr> <tr class="sub"> <td colspan="2"> <input type="submit" value="快速回复" class="but"> <input type="reset" value="重置" class="but"> </td> </tr> </table> </form> </body> </html>
章節課件