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

PHP develops simple news release system news list page

In this section we will start to explain the news list page, a more important page in the system

1606.png

##Here we mainly use the <table> tag to create a table for display. News title, author, content, publication time, modification time, and news editing module

<html>
<body>
    <table cellspacing="0" cellpadding="0" align="center" bgcolor="#ccc" >
     <tr>
        <th>編號(hào)</th>
        <th>文章標(biāo)題</th>
        <th>文章作者</th>
        <th>文章內(nèi)容</th>
        <th>發(fā)布時(shí)間</th>
        <th>編輯文章</th>
      </tr>
      <tr>
        <td align="center" style="border:1px solid #000; width: 5%;"></td>
        <td align="center" style="border:1px solid #000; width: 10%;"></td>
        <td align="center" style="border:1px solid #000; width: 10%;"></td>
        <td align="center" style="border:1px solid #000; width: 15%;"></td>
        <td align="center" style="border:1px solid #000; width: 10%;"></td>
        <td align="center" style="border:1px solid #000; width: 10%;">
          <a href="#"><font color="red">修改</font></a>
          <a href="#"><font color="red">刪除</font></a>
        </td>
      </tr>
    </table>
</body>
</html>

Use <div> and <a> tags at the bottom of the page to implement paging function

<body>
    <div>
      共?頁(yè) |查到?條記錄| 當(dāng)前第?頁(yè)|
     <a href="#">上一頁(yè)|</a>
     <a href="#">|下一頁(yè)</a>
    </div>
</body>

We added a <form> form at the head to add a search box function.

<body>
    <form method="get" action="" >
      <input type="text" name="keyword" value=""/>
      <input type="submit" value="搜索"/>
    </form>
</body>


Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>新聞列表頁(yè)</title> </head> <body> <form method="get" action="" style="margin:10px;"> <input type="text" name="keyword" value=""/> <input type="submit" value="搜索"/> </form> <table cellspacing="0" cellpadding="0" align="center" bgcolor="#ccc"> <tr> <th>編號(hào)</th> <th>文章標(biāo)題</th> <th>文章作者</th> <th>文章內(nèi)容</th> <th>發(fā)布時(shí)間</th> <th>編輯文章</th> </tr> <tr> <td align="center" style="border:1px solid #000; width: 8%;"></td> <td align="center" style="border:1px solid #000; width: 10%;"></td> <td align="center" style="border:1px solid #000; width: 10%;"></td> <td align="center" style="border:1px solid #000; width: 15%;"></td> <td align="center" style="border:1px solid #000; width: 10%;"></td> <td align="center" style="border:1px solid #000; width: 13%;"> <a href="#"><font color="red">修改</font></a> <a href="#"><font color="red">刪除</font></a> </td> </tr> </table> <div style="margin-left: 40px;"> 共?頁(yè) |查到?條記錄| 當(dāng)前第?頁(yè)| <a href="#">上一頁(yè)|</a> <a href="#">|下一頁(yè)</a> </div> </body> </html>
submitReset Code