PHP開發之留言板頁面佈局LOGIN

PHP開發之留言板頁面佈局

在上章節我們已經講到了發布留言和展示留言是在用一個頁面,所以你可以運用你所學到的HTML和css知識進行簡單的頁面佈局,本教程留言板所運用到的頁面佈局程式碼如下

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>留言板</title>
<body>
<div id="left">
    <img src="images/reg.jpg">
</div>
<div id="center">
    <h1>留言内容</h1>
</div>
<div id="right" >
    <h2>留言板</h2>
    <div > <a href="">首页</a> | <button>留言</button> <a href="" class="right">管理员登录</a>
        <form method="post" action="ressage_post.php" style="display:none;" onsubmit="return foo();" name="myform" ">
        <div class="form">
            <p>
                姓名:<input type="text" name="name">
            </p>
            <p>
                邮箱:<input type="email" name="email">
            </p>
            <p>
                留言内容:<br/>
                <textarea cols="30" rows="7" name="content"></textarea>
            </p>
            <p>
                验证码:<input type="text" name="vcode"><img src="yanzhengma.php" onClick="this.src='yanzhengma.php?nocache='+Math.random()" style="cursor:hand">
            </p>
            <p>
                <button class="button">提交留言</button>
            </p>
        </div>
        </form>
    </div>
</body>
</html>

上面的程式碼我們將頁面分成了三部分,第一個<div id="left">裡面放置了一張圖片。圖片如下

reg.jpg

第二個<div id="center">裡面是放置我們所發布展示的留言

第三個< div id="right" >我們是在裡面放置了<form>表單,用於提交我們的留言


上面的程式碼我們沒有用任何的css樣式,所以我們的頁面看起來很不好看,在下章節我們就會給大家展示我們所運用到的頁面佈局樣式



下一節
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>留言板</title> <body> <div id="left"> <img src="https://img.php.cn//upload/image/460/147/285/1477727203382106.jpg"> </div> <div id="center"> <h1>留言内容</h1> </div> <div id="right" > <h2>留言板</h2> <div > <a href="">首页</a> | <button>留言</button> <a href="" class="right">管理员登录</a> <form method="post" action="ressage_post.php" style="display:none;" onsubmit="return foo();" name="myform" "> <div class="form"> <p> 姓名:<input type="text" name="name"> </p> <p> 邮箱:<input type="email" name="email"> </p> <p> 留言内容:<br/> <textarea cols="30" rows="7" name="content"></textarea> </p> <p> 验证码:<input type="text" name="vcode"><img src="yanzhengma.php" onClick="this.src='yanzhengma.php?nocache='+Math.random()" style="cursor:hand"> </p> <p> <button class="button">提交留言</button> </p> </div> </form> </div> </body> </html>
章節課件