PHP 개발 게시판에서 메시지 보기


파일 만들기 list.php

<!DOCTYPE html>
 <html lang="utf-8">
 <head>
    <?php
 include ("conn.php");
 ?> 
  <link href="css.css" rel="stylesheet" type="text/css">
 </head>
 
 
 <table width=500 border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#add3ef" >
     <?php
     $sql="select * from message order by id desc";
     $query=mysql_query($sql);
     while($row=mysql_fetch_array($query)){  ?>
 
         <tr bgcolor="#eff3ff">
             <td>标题: <?php echo $row['title'];?> <font color="red">用户: <?php echo $row['user'];?> </td>
         </tr>
         <tr bgColor="#ffffff">
             <td>发表内容:<?php echo $row['content'];?></td>
         </tr>
         <tr bgColor="#ffffff">
             <td><div align="right">时间:<?php echo $row['lastdate'];?></td>
         </tr>
     <?php } ?>
     <tr bgcolor="#f0fff0">
         <td><div align="right"><a href="add.html">返回留言</a> </td>
     </tr>
 </table>
 </html>

CSS 스타일 파일 및 conn 데이터베이스 파일 소개

<?php
    $sql="select * from message order by id desc";
    $query=mysql_query($sql);
    while($row=mysql_fetch_array($query)){ 
    } ?>

연결 메시지 데이터베이스가 거꾸로 정렬되었습니다

mysql_queryQuery

mysql_fetch_array() - 데이터 형식을 가져와서 표시
그런 다음 필요한 데이터를 별도로 작성합니다

이 게시판을 작성하고 나면 기본적으로 메시지에 삭제 기능을 추가할 수 있습니다. 나중에 보드를 추가하면 더욱 완벽해집니다.


이 장의 초점:

  1. HTML과 PHP가 혼합된 HTML 문에 PHP 문을 삽입합니다.

  2. 플래시백을 사용하여 데이터를 표시하고 최신 데이터가 맨 위에 오도록 하여 사람들의 사용 습관에 더 부합합니다.

  3. mysql_query 및 mysql_fetch_array() - 데이터 형식을 얻고 표시하기 위해 이 두 가지 방법을 사용합니다.

지속적인 학습
||
<!DOCTYPE html> <html lang="utf-8"> <head> <?php include ("conn.php"); ?> <link href="css.css" rel="stylesheet" type="text/css"> </head> <table width=500 border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#add3ef" > <?php $sql="select * from message order by id desc"; $query=mysql_query($sql); while($row=mysql_fetch_array($query)){ ?> <tr bgcolor="#eff3ff"> <td>标题: <?php echo $row['title'];?> <font color="red">用户: <?php echo $row['user'];?> </td> </tr> <tr bgColor="#ffffff"> <td>发表内容:<?php echo $row['content'];?></td> </tr> <tr bgColor="#ffffff"> <td><div align="right">时间:<?php echo $row['lastdate'];?></td> </tr> <?php } ?> <tr bgcolor="#f0fff0"> <td><div align="right">< a href=" ">返回留言</ a> </td> </tr> </table> </html>
  • 코스 추천
  • 코스웨어 다운로드
현재 코스웨어를 다운로드할 수 없습니다. 현재 직원들이 정리하고 있습니다. 앞으로도 본 강좌에 많은 관심 부탁드립니다~