mysql select 로 자료 출력

https://youtu.be/DVSNmk4E2EE

 

 

 

<?php include "database.php"; ?>

<?php

  //Create Select Query

  $query = "SELECT * FROM shout";

  $shouts = mysqli_query($con, $query);

?>

<!DOCTYPE html>

<html>

  <head>

    <meta charset="utf-8">

    <title>Talk and Talk</title>

    <link rel="stylesheet" href="css/style.css" type="text/css" />

  </head>

  <body>

    <div id="container">

      <header>

        <h1>Talk And Talk</h1>

      </header>

      <div id="shouts">

        <ul>

          <?php while($row = mysqli_fetch_assoc($shouts)) : ?>

              <li class="shout"><span><?php echo $row['time'] ?> - </span><strong><?php echo $row['user'] ?>:</strong> <?php echo $row['message'] ?></li>

          <? endwhile; ?>

        </ul>

      </div>

      <div id="input">

        <form action="precess.php" method="post">

          <input type="text" name="user" placeholder="이름을 입력하세요" />

          <input type="text" name="message" placeholder="메세지를 입력하세요" />

          <br />

          <input class="shout-btn" type="submit" name="submit" value="글쓰기">

        </form>

      </div>

    </div>

  </body>

</html>


|

댓글 1개

어떻게 동작하는지 보여지니깐 이해가 쉽네요.
댓글을 작성하시려면 로그인이 필요합니다.

호스팅정보

+
제목 글쓴이 날짜 조회
10년 전 조회 949
10년 전 조회 851
10년 전 조회 949
10년 전 조회 999
10년 전 조회 1,534
10년 전 조회 1,031
10년 전 조회 922
10년 전 조회 883
10년 전 조회 899
10년 전 조회 899
10년 전 조회 914
10년 전 조회 958
10년 전 조회 877
10년 전 조회 1,124
10년 전 조회 812
10년 전 조회 763
10년 전 조회 907
10년 전 조회 841
10년 전 조회 952
10년 전 조회 1,063
10년 전 조회 883
10년 전 조회 940
10년 전 조회 917
10년 전 조회 737
10년 전 조회 837
10년 전 조회 955
10년 전 조회 715
10년 전 조회 1,097
10년 전 조회 765
10년 전 조회 805