PHP ?? ?? ??? ??? ?? ?? ???
?? ?? ??? new_list.php ??? ????
??? ???? ?? ??? ? ???? ?????
?? ???????? ???? ????. ??? ??? ????. follow
<?php header("content-type:text/html;charset=utf8"); $conn=mysqli_connect("localhost","root","root","News"); mysqli_set_charset($conn,'utf8'); //設(shè)定字符集 $sql="select * from new"; $que=mysqli_query($conn,$sql); ?>
???? HTML ???? ????? HTML? PHP ??? ???? ???? ???. ??
??? ??? ????
<!doctype html> <html> <head> <meta charset="utf-8"> <title>PHP中文網(wǎng)</title> <style> table{ margin-top: 10px; } </style> </head> <body> <a href="new.html">返回發(fā)布新聞</a> <table border="1" cellspacing="0" width=360 > <tr> <th>編號</th> <th>文章標(biāo)題</th> <th>文章內(nèi)容</th> <th>編輯文章</th> <th>發(fā)布時間</th> </tr> <?php while($row=mysqli_fetch_array($que)){ ?> <tr> <td><?php echo $row['id'];?></td> <td><?php echo $row['title']?></td> <td><?php echo $row['content']?></td> <td> <a href="new_ed.php?id=<?php echo $row['id']?>">修改</a> <a href="new_del.php?id=<?php echo $row['id']?>">刪除</a> </td> <td><?php echo $row['cre_time']?></td> <?php } ?> </tr> </table> </body> </html>
new_list.php new_list.php ??? ?? ??? ??? ????
<?php header("content-type:text/html;charset=utf8"); $conn=mysqli_connect("localhost","root","root","News"); mysqli_set_charset($conn,'utf8'); //設(shè)定字符集 $sql="select * from new"; $que=mysqli_query($conn,$sql); ?> <!doctype html> <html> <head> <meta charset="utf-8"> <title>PHP中文網(wǎng)</title> <style> table{ margin-top: 10px; } </style> </head> <body> <a href="new.html">返回發(fā)布新聞</a> <table border="1" cellspacing="0" width=360 > <tr> <th>編號</th> <th>文章標(biāo)題</th> <th>文章內(nèi)容</th> <th>編輯文章</th> <th>發(fā)布時間</th> </tr> <?php while($row=mysqli_fetch_array($que)){ ?> <tr> <td><?php echo $row['id'];?></td> <td><?php echo $row['title']?></td> <td><?php echo $row['content']?></td> <td> <a href="new_ed.php?id=<?php echo $row['id']?>">修改</a> <a href="new_del.php?id=<?php echo $row['id']?>">刪除</a> </td> <td><?php echo $row['cre_time']?></td> <?php } ?> </tr> </table> </body> </html>
? ??? ??? ???? ?? ??? HTML ???? ? ??? ??? ? ????