国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

HTML ??

????? ???? ??? ???????? ??? HTML ??? ???? ????. ??? ??? ??? ???? ??? ??? ? ???? ??? ????? ??? ?? ??? ???? ??? ? ????.

??:

<form   method="傳送方式"   action="服務(wù)器文件">

??:

1.<form>: <form> ??? <form>? ???? < /??>?.

2.action: PHP ???(save.php) ? ???? ??? ???? ???? ????.

3.method: ??? ??(get/post) ?????.

<form    method="post"   action="save.php">
        <label for="username">用戶名:</label>
        <input type="text" name="username" />
        <label for="pass">密碼:</label>
        <input type="password" name="pass" />
</form>

??:

1. ?? ?? ???(??? ??, ??? ??, ??, ??? ??, ??? ?)? ???? ???. <form></form> ?? ??(??? ??? ???? ??? ??? ??? ???? ?? ? ????!)

2. ???? ???: post/get ? ??? ??? ?????? ???? ? ?????. ?? ?? ???? ??? ??? ?? ? ??? ??? ??? ???.

???? ??
||
<html> <head> <style> div#container{width:1000px} div#header {background-color: royalblue ;height: 100px;text-align:center;font-size: 20px} div#sidebar{background-color: darkorange;height:400px;width:300px;float:left;} div#mainbody {background-color: forestgreen;height:400px;width:700px;float:left;} div#footer {background-color: powderblue;height: 100px;clear:both;text-align:center;} </style> </head> <body> <div id="container"> <div id="header"> <h1>php中文網(wǎng)</h1> </div> <div id="sidebar"> <dl> <dt>list of book</dt> <dd> <ol> <li>hadoop</li> <li>linux</li> <li>c</li> </ol> </dd> </dl> </div> <div id="mainbody"> <h1>the summary of the book</h1> <p>i will lead you to travel in the season of linux</p> <form> <input type="checkbox" name="married" /> married <br/> <input type="checkbox" name="have a job" /> have a job <br/> <input type="checkbox" name="chinese" /> chinese </form> </div> <div id="footer">good good study day day up</div> </div> </body> </html>