亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

PHP Development Small Forum Tutorial View Post Details

We have successfully published the post, but the content we can see on the forum details page is limited. If we want to see more information, we need further details

2.jpg

1.jpg


The code is as follows

<?php
header("Content-type:text/html;charset=utf-8");    //設(shè)置編碼
// 創(chuàng)建連接
$conn = mysqli_connect("localhost", "root", "root", "mybbs");
mysqli_set_charset($conn,'utf8'); //設(shè)定字符集
$id=$_GET['id'];
$sql="select * from tiopic where id='$id'";
$que=mysqli_query($conn,$sql);
$row=mysqli_fetch_array($que);
?>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>詳情</title>
    <style>
        .left{
            width: 170px;
        }
        .bg{
            background-color: #B10707;
            color: white;
        }
        .fh{
            margin-left: 18px;
        }
        .spa{
            margin-left: 25px;
        }
        .ind{
            text-indent:2em;
        }
    </style>
</head>
<body>
<table width="600px" border="1" cellpadding="12" cellspacing="0" align="center">
    <tr>
        <td colspan="2" class="bg"><?php echo $row['title'] ?>
 <span class="fh"><a style="color: white" href="forums.php">[返回]</a></span>
        </td>
    </tr>
    <tr>
        <td rowspan="2" class="left">
            發(fā)帖人:
 <?php
                    echo $row['author']
 ?>
 </td>
        <td>
              發(fā)帖時(shí)間:<?php echo $row['last_post_time']?>
 <span class="spa"><a href="reply.php?id=<?php echo$row['id']?>">回復(fù)</a></span>
        </td>
    </tr>
    <tr class="ind">
        <td><?php echo $row['content']?></td>
    </tr>
    <?php
    if($row['reply']==""){
 echo "<tr>
                 <td colspan='2'>暫時(shí)還沒有回復(fù)哦?。?!</td>
             </tr>";
    }else{
 echo "<tr>
                <td>回復(fù)人:".$row['reply_author']. ".".$row['reply_time']."</td>
                <td>".$row['reply']."</td>
           </tr>";
    }
 ?>
</table>
</body>
</html>

We have a reply link in the code, which can reply to the post (the code in this tutorial can only reply once)


Now we will do our reply function



Continuing Learning
||
<?php header("Content-type:text/html;charset=utf-8"); //設(shè)置編碼 // 創(chuàng)建連接 $conn = mysqli_connect("localhost", "root", "root", "mybbs"); mysqli_set_charset($conn,'utf8'); //設(shè)定字符集 $id=$_GET['id']; $sql="select * from tiopic where id='$id'"; $que=mysqli_query($conn,$sql); $row=mysqli_fetch_array($que); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>詳情</title> <style> .left{ width: 170px; } .bg{ background-color: #B10707; color: white; } .fh{ margin-left: 18px; } .spa{ margin-left: 25px; } .ind{ text-indent:2em; } </style> </head> <body> <table width="600px" border="1" cellpadding="12" cellspacing="0" align="center"> <tr> <td colspan="2" class="bg"><?php echo $row['title'] ?> <span class="fh"><a style="color: white" href="forums.php">[返回]</a></span> </td> </tr> <tr> <td rowspan="2" class="left"> 發(fā)帖人: <?php echo $row['author'] ?> </td> <td> 發(fā)帖時(shí)間:<?php echo $row['last_post_time']?> <span class="spa"><a href="reply.php?id=<?php echo$row['id']?>">回復(fù)</a></span> </td> </tr> <tr class="ind"> <td><?php echo $row['content']?></td> </tr> <?php if($row['reply']==""){ echo "<tr> <td colspan='2'>暫時(shí)還沒有回復(fù)哦?。?!</td> </tr>"; }else{ echo "<tr> <td>回復(fù)人:".$row['reply_author']. ".".$row['reply_time']."</td> <td>".$row['reply']."</td> </tr>"; } ?> </table> </body> </html>
submitReset Code