国产片侵犯亲女视频播放_亚洲精品二区_在线免费国产视频_欧美精品一区二区三区在线_少妇久久久_在线观看av不卡

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - PHP教程 - php開發論壇系統

php開發論壇系統

2021-09-27 11:28CoCo 13 PHP教程

這篇文章主要介紹了php做論壇系統,本文通過實例代碼給大家介紹的非常詳細,具有一定的參考借鑒價值,需要的朋友可以參考下

1、總體設計

前端的一些東西

php開發論壇系統

php開發論壇系統

都可以點的,論壇點進去

php開發論壇系統

php開發論壇系統

index.php

  1. <!doctype html> 
  2. <html lang="en"
  3. <head> 
  4.   <meta charset="UTF-8"
  5.   <meta name="viewport" 
  6.      content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
  7.   <meta http-equiv="X-UA-Compatible" content="ie=edge"
  8.   <title>Document</title> 
  9. </head> 
  10. <!-- 新 Bootstrap4 核心 CSS 文件 --> 
  11. <link rel="stylesheet" href="bootstrap-4.4.1-dist/css/bootstrap.min.css" rel="external nofollow" > 
  12. <!-- jQuery文件。務必在bootstrap.min.js 之前引入 --> 
  13. <script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script> 
  14. <!-- bootstrap.bundle.min.js 用于彈窗、提示、下拉菜單,包含了 popper.min.js --> 
  15. <script src="https://cdn.staticfile.org/popper.js/1.15.0/umd/popper.min.js"></script> 
  16. <!-- 最新的 Bootstrap4 核心 JavaScript 文件 --> 
  17. <script src=src="bootstrap-4.4.1-dist/js/bootstrap.min.js"></script> 
  18. <body> 
  19. <?php 
  20.   include('test1.php'); 
  21.   session_start(); 
  22. ?> 
  23. <nav class="navbar navbar-expand-sm bg-primary navbar-dark fixed-bottom"
  24.   <a class="navbar-brand" href="index2.php" rel="external nofollow" rel="external nofollow" rel="external nofollow" ><login>ice</login></a>  
  25.  <ul class="navbar-nav"
  26.   <li class="nav-item"
  27.    <a class="nav-link" href="#section1" rel="external nofollow" >熱帖</a> 
  28.   </li> 
  29.   <li class="nav-item"
  30.    <a class="nav-link" href="#section2" rel="external nofollow" >聚焦</a> 
  31.   </li> 
  32.   <li class="nav-item"
  33.    <a class="nav-link" href="#section3" rel="external nofollow" >文學</a> 
  34.   </li> 
  35.   <li class="nav-item"
  36.    <a class="nav-link" href="#section4" rel="external nofollow" >論壇榜</a> 
  37.   </li> 
  38.   <li class="nav-item"
  39.    <a class="nav-link" href="#section5" rel="external nofollow" >更多</a> 
  40.   </li> 
  41.  </ul> 
  42.   <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar"
  43.     <span class="navbar-toggler-icon"></span> 
  44.   </button> 
  45.   <div class="collapse navbar-collapse justify-content-end nav-justified" id="collapsibleNavbar"
  46.     <ul class="navbar-nav"
  47.      <li class="nav-item col-8"
  48.         <div class=""
  49.           <a class="nav-link" href="index2.php" rel="external nofollow" rel="external nofollow" rel="external nofollow" >主頁</a> 
  50.         </div> 
  51.       </li> 
  52.       <li class="nav-item col-8"
  53.         <div class=""
  54.           <a class="nav-link" href="login.php" rel="external nofollow" rel="external nofollow" >登錄</a> 
  55.         </div> 
  56.       </li> 
  57.       <li class="nav-item col-8"
  58.         <div class=""
  59.           <a class="nav-link" href="register.php" rel="external nofollow" rel="external nofollow" >注冊</a> 
  60.         </div> 
  61.       </li> 
  62.     </ul> 
  63.   </div> 
  64. </nav> 
  65. <div class="container" style="margin-top:30px;height: 2321px"
  66.   <div class="row"
  67.     <div class="col-sm-4"
  68.       <div class=" border-primary rounded text-center" style="height:330px;"
  69.       <p>&nbsp;</p> 
  70.         <h2>ICE</h2> 
  71.         <div class="fakeimg"><img src="timg.jpg" style="width: 200px;height: 200px;" class="rounded-circle"></div> 
  72.       </div> 
  73.       <div class="border-light border rounded" style="round-clip: 65px;width:338px"
  74.         <ul class="nav nav-pills flex-column table-hover"
  75.           <li class="nav-item"
  76.             <a class="nav-link active text-center" href="liaojieluntan.php" rel="external nofollow" >了解論壇</a> 
  77.           </li> 
  78.           <li class="nav-item "
  79.             <a class="nav-link text-center" href="luntanzhuban.php" rel="external nofollow" >論壇主板</a> 
  80.           </li> 
  81.           <li class="nav-item"
  82.             <a class="nav-link text-center" href="luntanwangshi.php" rel="external nofollow" >論壇網事</a> 
  83.           </li> 
  84.           <li class="nav-item"
  85.             <a class="nav-link text-center" href="luntanbieyuan.php" rel="external nofollow" >論壇別院</a> 
  86.           </li> 
  87.           <li class="nav-item"
  88.             <a class="nav-link text-center" href="quyuluntan.php" rel="external nofollow" >區域論壇</a> 
  89.           </li> 
  90.           <li class="nav-item"
  91.             <a class="nav-link text-center" href="lvyouluntan.php" rel="external nofollow" >旅游論壇</a> 
  92.           </li> 
  93.           <li class="nav-item"
  94.             <a class="nav-link text-center" href="zhiyejiaoliu.php" rel="external nofollow" >職業交流</a> 
  95.           </li> 
  96.           <li class="nav-item"
  97.             <a class="nav-link text-center" href="daxuexiaoyuan.php" rel="external nofollow" >大學校園</a> 
  98.           </li> 
  99.           <li class="nav-item"
  100.             <a class="nav-link text-center" href="luntanwenda.php" rel="external nofollow" >論壇回答</a> 
  101.           </li> 
  102.         </ul> 
  103.       </div> 
  104.       <p></p> 
  105.    <div class="container mt-3" style="padding-top:30px;padding-bottom:30px"
  106.    <p>&nbsp;</p><p>&nbsp;</p> 
  107.  <h2>文學精品</h2> 
  108.  <br> 
  109.  <div class="media border p-3"
  110.   <img src="timg.jpg" alt="John Doe" class="mr-3 mt-3 rounded-circle" style="width:60px;height:60px"
  111.   <div class="media-body"
  112.    <h4><a href="wenxuejingpin.php" rel="external nofollow" rel="external nofollow" class="nav-link text-muted">《三角城往事》</a></h4> 
  113.    <p><a href="wenxuejingpin.php" rel="external nofollow" rel="external nofollow" class="text-muted">三角城不是一個虛擬的空間,似乎也不是一座確實存在的城市或水邊小鎮,但它在我心里業已存在多年,且匯...</a></p> 
  114.   </div> 
  115.  </div> 
  116. </div> 
  117. <div class="container" style="padding-top:30px;padding-bottom:30px"
  118.  <h2>論壇能量</h2> 
  119.  <p>本論壇旨在傳播正能量,今天也要元氣滿滿哦!</p>  
  120.  <div class="progress"
  121.   <div class="progress-bar progress-bar-striped progress-bar-animated" style="width:85%"></div> 
  122.  </div> 
  123. </div> 
  124. <div class="container" style="padding-top:30px;padding-bottom:30px"
  125.  <h2>幸運博主名單公布</h2> 
  126.  <p>恭喜以下博主獲得最佳幸運獎:</p>       
  127.  <table class="table table-hover"
  128.   <thead> 
  129.    <tr> 
  130.     <th>ID</th> 
  131.     <th>昵稱</th> 
  132.     <th>幸運值</th> 
  133.    </tr> 
  134.   </thead> 
  135.   <tbody> 
  136.    <tr> 
  137.     <td>324533</td> 
  138.     <td>Doe</td> 
  139.     <td>97</td> 
  140.    </tr> 
  141.    <tr> 
  142.     <td>231242</td> 
  143.     <td>Moe</td> 
  144.     <td>95</td> 
  145.    </tr> 
  146.    <tr> 
  147.     <td>234987</td> 
  148.     <td>Dooley</td> 
  149.     <td>92</td> 
  150.    </tr> 
  151.   </tbody> 
  152.  </table> 
  153. </div> 
  154.       <hr class="d-sm-none"
  155.     </div> 
  156.     <div class="col-sm-8 container"
  157.       <div class="rounded text-muted h-25"
  158.  
  159. <body data-spy="scroll" data-target=".navbar" data-offset="50"
  160.  
  161. <tr> 
  162.   <td align="center" valign="middle"><table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" background="image/55.gif"
  163.    <tr> 
  164.     <?php $date=date("Y-m-d");?> 
  165.     <td height="30">&nbsp;</td> 
  166.     <td width="580"><div align="center"><marquee direction="left" scrollamount="1" scrolldelay="7"
  167.      <img src="timg.jpg" width="19" height="18"><span class="style1">歡迎訪問在線論壇網站! &nbsp;&nbsp;<?php echo $date;?> </span> 
  168.     </marquee></div></td> 
  169.    </tr> 
  170.   </table></td> 
  171.  </tr> 
  172.  
  173. <div id="section1" class="container-fluid bg-light" style="padding-top:5px;padding-bottom:0px"
  174.  <h1><a href="retie.php" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="nav-link text-muted">熱帖</a></h1> 
  175.  <a href="retie.php" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="nav-link text-muted"
  176.  <p>2020年論壇新年獻詞:堅守初心,你好理想,時間開始了.這一年中的你和我,如同十年前初次相遇的我們:以夢為馬,不負韶華;這一年中的你和我,心中藏著詩意與遠...</p> 
  177.  <p>7位明星一級演員,為何“自降身價”出演網劇《慶余年》?《慶余年》正在熱播,這部劇剛播出就受到了不少觀眾們的熱愛,張若昀和李沁兩位主演的演技是受到觀眾們肯定的,再加上一眾老戲骨的參演...</p> 
  178.  </a> 
  179. </div> 
  180. <div id="section2" class="container-fluid bg-muted" style="padding-top:70px;padding-bottom:110px"
  181.  <h1><a href="jujiao.php" rel="external nofollow" rel="external nofollow" class="nav-link text-muted">聚焦</a></h1> 
  182.  <a href="jujiao.php" rel="external nofollow" rel="external nofollow" class="nav-link text-muted"
  183.  <p>論海南美食的命定搭配。說起咱們大海南的美食,沒有個三天三夜那是絕對停不了嘴的。而其中有些食物,仿佛就是天生一對般的存在,就是那種只要你一吃,“懂行”的人就能迅速反應過來...</p> 
  184.  <p></p> 
  185.  </a> 
  186. </div> 
  187. <div id="section3" class="container-fluid bg-light" style="padding-top:70px;padding-bottom:70px"
  188.  <h1><a href="wenxue.php" rel="external nofollow" rel="external nofollow" class="nav-link text-muted">文學</a></h1> 
  189.  <a href="wenxue.php" rel="external nofollow" rel="external nofollow" class="nav-link text-muted"
  190.  <p> 
  191. ...</p> 
  192.  <p> 
  193. 在巴黎十六區萊努合大街47號,一棟不惹眼的小房子靜靜矗立。這是法國大文豪巴爾扎克的故居。他在這里生活了7年,完成了《人間喜劇》系列中的多部作品...</p> 
  194. </div> 
  195. <div id="section4" class="container-fluid bg-muted" style="padding-top:70px;padding-bottom:120px"
  196.  <h1><a href="luntanbang.php" rel="external nofollow" rel="external nofollow" class="nav-link text-muted">論壇榜</a></h1> 
  197.  <a href="luntanbang.php" rel="external nofollow" rel="external nofollow" class="nav-link text-muted"
  198.  <p>體育課麻雀變鳳凰背后,是社會對健康的呼喚與寄望。體育課地位很少有像今天這樣高!歲末年初,云南一項新政上了熱搜:該省將中考體育成績上調至100分,體育首次與語文、數學、英語并舉為...</p> 
  199.  <p>90后沒上過大學卻能造火箭:我們的征途是星辰大海!有這樣一位90后:他沒上過大學,卻造出了火箭,從火箭發動機的業余愛好者,到民用航空產品研發和液體火箭發動機的專業設計師,浩瀚星空下,吳曉飛的航天夢...</p> 
  200. </div> 
  201. <div id="section5" class="container-fluid bg-light" style="padding-top:70px;padding-bottom:70px"
  202.  <h1><a href="gengduo.php" rel="external nofollow" rel="external nofollow" class="nav-link text-muted">更多</a></h1> 
  203.  <a href="gengduo.php" rel="external nofollow" rel="external nofollow" class="nav-link text-muted"
  204.  <p>..</p> 
  205.  <p>98%食安合格率不是終點。在近日召開的全國市場監管工作會議上,市場監管總局提出了一個食品安全“小目標”——2020年食品安全抽檢合格率達到98%...</p> 
  206. </div> 
  207.  
  208. </body> 
  209.   
  210.       </div> 
  211.       
  212.     </div> 
  213.   </div> 
  214. </div> 
  215.  
  216. <div class="jumbotron text-center" style="margin-bottom:0"
  217.   <p> 
  218.   <div id = "footer"
  219. <dl> 
  220.  <dt><a href = "#">關于我們</a> || <a href = "#">產品目錄</a> || <a href = "#">反饋問題</a> || <a 
  221.  href = "#">廣告合作</a> || <a href = "#">聯系我們</a></dt> 
  222.  <dd>Copyright &copy; 2019 - 2024 donghe.com All Rights Reserverd 
  223.  <br/>東河公司 版權所有 京 ICP 備 200000000 號 
  224.  </dd> 
  225. </dl> 
  226. </div> 
  227. </p> 
  228. </div> 
  229. </body> 
  230. </html> 

retie.php

  1. <?php 
  2. include("conn.php"); 
  3. $page=(isset($_GET['page']))?$_GET['page']:"1"
  4. $zq=(isset($_GET['zq']))?$_GET['zq']:"熱帖"
  5. ?> 
  6. <style type="text/css"
  7. <!-- 
  8. a:link { 
  9.  text-decoration: none; 
  10.  color: #3333CC; 
  11. a:visited { 
  12.  text-decoration: none; 
  13. a:hover { 
  14.  text-decoration: none; 
  15. a:active { 
  16.  text-decoration: none; 
  17.  color: #FF0000; 
  18. .style1 { font-size: 13px; 
  19.  font-family: "宋體"
  20.  font-weight: normal; 
  21. .style2 { font-size: 14px; 
  22.  font-family: "宋體"
  23. body { 
  24.  background-color: #EFF3FF; 
  25.  margin-left: 0px; 
  26.  margin-top: 0px; 
  27.  margin-right: 0px; 
  28.  margin-bottom: 0px; 
  29. --> 
  30. </style> 
  31. <div align="center"><?php include("head.php");?></div> 
  32. <p>&nbsp;</p> 
  33.   
  34. <table width="476"
  35. <div class="container"
  36.  <ul class="nav nav-tabs"
  37.   <li class="nav-item"
  38.    <a class="nav-link active" href="retie.php" rel="external nofollow" rel="external nofollow" rel="external nofollow" >本頁</a> 
  39.   </li> 
  40.   <li class="nav-item"
  41.    <a class="nav-link" href="index2.php" rel="external nofollow" rel="external nofollow" rel="external nofollow" >主頁</a> 
  42.   </li> 
  43.   <li class="nav-item"
  44.    <a class="nav-link" href="login.php" rel="external nofollow" rel="external nofollow" >登錄</a> 
  45.   </li> 
  46.   <li class="nav-item"
  47.    <a class="nav-link" href="register.php" rel="external nofollow" rel="external nofollow" >注冊</a> 
  48.   </li> 
  49.    
  50.   <table width="776" border="0" align="center" cellpadding="0" cellspacing="0" background=""
  51.   <tr> 
  52.    <td width="109" height="25" background="">&nbsp;</td> 
  53.    <td width="638" align="right" valign="middle"><div align="center"><marquee direction="left" scrollamount="1" scrolldelay="7" 
  54.     onMouseOver="this.stop();" onMouseOut="this.start();"
  55.    <img src="timg.jpg" width="19" height="18"><span class="style1">歡迎訪問東河論壇網站!</span> &nbsp;&nbsp;<?php echo date("Y-m-d H:i:s")?> 
  56.             </marquee></div></td> 
  57.    <td width="29" >&nbsp;</td> 
  58.   </tr> 
  59.  </table> 
  60.    
  61.  </ul> 
  62. </div> 
  63. </table> 
  64.  
  65.  <table width="776" height="30" border="0" align="center" cellpadding="0" cellspacing="0" background="timg.jpg"
  66.    <tr> 
  67.     <td height="30" align="center"><h2><p class="text-muted"><?php echo $zq;?>專區 &nbsp; 
  68.     </p></h2></td> 
  69.     <td width="584">&nbsp;</td> 
  70.    </tr> 
  71.   </table> 
  72. <?php  
  73. $page_size=5; //每頁顯示4條記錄 
  74. $query="select * from tb_zqlb where zq='".$zq."'"//從數據庫中查詢所有符合條件的數據 
  75. $result=mysqli_query($conn,$query); 
  76. $message_count=mysqli_num_rows($result);  //變量表示查詢出結果的數量 
  77. if($message_count>0){ 
  78. ?> 
  79. <table width="776" height="30" border="1" align="center" cellpadding="1" cellspacing="1" 
  80.  class="table-hover"
  81.  <thead> 
  82.  <tr align="center"
  83.   <td width="51" height="26" class="style1"><p class="text-muted"><h6>狀態</h6></p></td> 
  84.   <!--<td width="54" class="style1"><p class="text-muted"><h6>心情</h6></p></td> --> 
  85.   <td width="381" class="style1"><p class="text-muted"><h6>主&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 題</h6></p></td> 
  86.   <td width="79" class="style1"><p class="text-muted"><h6>作者</h6></p></td> 
  87.   <td width="76" class="style1"><p class="text-muted"><h6>回復/人氣</h6></p></td> 
  88.   <td width="135" class="style1"><p class="text-muted"><h6>發表時間</h6></p></td> 
  89.  </tr> 
  90.  </thead> 
  91. <?php  
  92. $page_count=ceil($message_count/$page_size); //變量表示按照每頁1條記錄顯示共有多個頁 
  93. $offset=($page-1)*$page_size;  //變量表示下一頁的記錄數是從那條記錄開始的 
  94. $query="select * from tb_zqlb where zq='".$zq."' order by id desc limit $offset ,$page_size "
  95. $result=mysqli_query($conn,$query); 
  96. while($myrow=mysqli_fetch_array($result)){ 
  97. ?> 
  98.  <tr> 
  99.   <td width="51" height="30" align="center"><img src="timg.jpg" width="16" height="16"></td> 
  100.   <!--<td width="54" align="center"><img src="images.php?recid=<?php echo $myrow['xq'];?>" width="20" height="20"></td>--> 
  101.   <td width="381" align="center" class="style1"><a href="luntanzhubannr.php?zhuti=<?php echo urlencode($myrow['zhuti']);?> 
  102.   &recid=<?php echo $myrow['id'];?>"><?php echo $myrow['zhuti'];?></a></td> 
  103.   <td width="79" align="center" class="style1"><a href="luntanzhubannr.php?zhuti=<?php echo urlencode($myrow['zhuti']);?> 
  104.   &recid=<?php echo $myrow['id'];?>"><?php echo $myrow['username'];?></a></td> 
  105.   <td width="76" align="center" class="style1"
  106.    <?php $quer="select count(*) as hfjl from tb_hflb where ljid='".$myrow['id']."'"; 
  107.     $resul=mysqli_query($conn,$quer); 
  108.    $row=mysqli_fetch_array($resul); 
  109.     $hfjl=$row['hfjl']; 
  110.    echo $hfjl; 
  111.     
  112.    ?> 
  113.    /<?php echo $myrow['fwjl'];?> </td> 
  114.   <td width="135" align="center" class="style1"><?php echo $myrow['fbsj'];?></td> 
  115.  </tr> 
  116.   
  117. <?php } ?> 
  118. </table> 
  119.   <table width="776" height="40" border="0" align="center" cellpadding="0" cellspacing="0" background="timg.jpg"
  120.     <tr> 
  121.      <td height="20" colspan="3">&nbsp;</td> 
  122.     </tr> 
  123.     <tr> 
  124.      <td width="240" height="20">&nbsp;</td> 
  125.      <td width="480"
  126. <table width="100%" border="0" cellspacing="0" cellpadding="0"
  127.  <tr class="style1"
  128.    <td width="40%">頁次:<?php echo $page;?> /<?php echo $page_count;?>頁 記錄:<?php echo $message_count;?>條</td> 
  129.     <td width="50%"> 分頁: 
  130.   <a href='retie.php?zq=<?php echo urlencode($zq);?>&page=1'>首頁</a> 
  131. <?php 
  132.  if($page >= 2){ 
  133. ?> 
  134.   <a href="retie.php?zq=<?php echo urlencode($zq);?>&page=<?php echo $page-1;?>" rel="external nofollow" >上一頁</a> 
  135. <?php  
  136.  } 
  137.  if($page < $page_count){ 
  138. ?> 
  139.   <a href="retie.php?zq=<?php echo urlencode($zq);?>&page=<?php echo $page+1;?>" rel="external nofollow" >下一頁</a> 
  140. <?php 
  141.  } 
  142.  if($page <= $page_count){  
  143. ?> 
  144.   <a href="retie.php?zq=<?php echo urlencode($zq);?>&page=<?php echo $page_count;?>" rel="external nofollow" >尾頁</a> 
  145. <?php  
  146.  } 
  147. ?> 
  148.  </td> 
  149.  </tr> 
  150. </table></td> 
  151.      <td width="56">&nbsp;</td> 
  152.     </tr> 
  153. </table> 
  154.   
  155. <?php  
  156. }else
  157. ?> 
  158.  <div align="center">無數據!</div>  
  159. <?php 
  160. ?> 
  161. <p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p> 
  162. <div class="jumbotron text-center" style="margin-bottom:0"
  163.   <p> 
  164.   <div id = "footer"
  165. <dl> 
  166.  <dt><a href = "#">關于我們</a> || <a href = "#">產品目錄</a> || <a href = "#">反饋問題</a> || <a 
  167.  href = "#">廣告合作</a> || <a href = "#">聯系我們</a></dt> 
  168.  <dd>Copyright &copy; 2019 - 2024 donghe.com All Rights Reserverd 
  169.  <br/>東河公司 版權所有 京 ICP 備 200000000 號 
  170.  </dd> 
  171. </dl> 
  172. </div> 
  173. </p> 
  174. </div> 

2、登錄/注冊

php開發論壇系統
php開發論壇系統
php開發論壇系統

php開發論壇系統

3、數據庫

部分數據庫,tb_user。

php開發論壇系統

總結

以上所述是小編給大家介紹的php開發論壇系統,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對網站的支持!
如果你覺得本文對你有幫助,歡迎轉載,煩請注明出處,謝謝!

原文鏈接:https://blog.csdn.net/weixin_43206161/article/details/103970525

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 国产成人一区 | 欧美日韩中文在线 | 成人免费av电影 | 老黄网站在线观看 | 中文字幕一区二区av | 国产一区二区欧美 | 中文精品在线 | 中文字幕一区二区三区四区五区 | a∨色狠狠一区二区三区 | 天天操天操 | 成人激情免费视频 | 午夜精品一区 | 久久久91精品国产一区二区三区 | 国产精品美女久久久久久久久久久 | 一区免费视频 | a免费视频| 在线观看免费黄色小视频 | 久久久久国产精品免费免费搜索 | 成年人黄色免费网站 | 一级毛片在线播放 | 国产永久免费 | 国产精品久久久久久亚洲调教 | 99精品国产一区二区青青牛奶 | 久草青青草 | 欧美视频一区 | 国产成人一区二区 | 亚洲精品成人 | 久久伊99综合婷婷久久伊 | 久久国产精品一区二区 | 亚洲视频久久久 | 午夜精品久久久久久久男人的天堂 | 成人在线免费 | 日本一区二区不卡 | 亚洲免费二区 | 亚洲第一视频网站 | 欧美日韩在线看 | 激情综合丁香 | 亚洲精品无 | 国产精品久久久久久久午夜 | 欧美中文一区二区三区 | 午夜激情视频在线观看 |