게시판을 만들기 위해서는 디비에 테이블을 만들고 게시글을 저장하고 또 불러와야한다.
그러기 위해서는 php와 mysql을 연결하는 작업을 해주어야만 한다.
자세한건 https://programmerdaddy.tistory.com/170 참조.
그리고 필요한 테이블을 만든다.
https://programmerdaddy.tistory.com/180 참조
그 후 아래와 같이 index.php 파일 상단에 디비 연결을 위한 코드를 추가한다.
저장하고 다시 접속을 해봐도 변화는 없다.
<?php
$hostname="localhost";
$dbuserid="testman";
$dbpasswd="1111";
$dbname="testdb";
$mysqli = new mysqli($hostname, $dbuserid, $dbpasswd, $dbname);
if ($mysqli->connect_errno) {
die('Connect Error: '.$mysqli->connect_error);
}
?>
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<title>Hello, world!</title>
</head>
<body>
<table class="table" style="width:70%;margin:auto;">
<thead>
<tr>
<th scope="col">번호</th>
<th scope="col">글쓴이</th>
<th scope="col">제목</th>
<th scope="col">등록일</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">3</th>
<td>Mark</td>
<td>Otto</td>
<td>2022.01.17</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>2022.01.17</td>
</tr>
<tr>
<th scope="row">1</th>
<td colspan="2">Larry the Bird</td>
<td>2022.01.17</td>
</tr>
</tbody>
</table>
</body>
</html>
개발하다 힘들면 눌러.
'PHP강좌 > 게시판만들기강좌' 카테고리의 다른 글
php+mysql 게시판 만들기 강좌 #6. 글쓰기 (0) | 2022.01.20 |
---|---|
php+mysql 게시판 만들기 강좌 #5. include (0) | 2022.01.20 |
php+mysql 게시판 만들기 강좌 #4. 게시글 보기 (0) | 2022.01.19 |
php+mysql 게시판 만들기 강좌 #3. 게시글 리스트 출력 (0) | 2022.01.19 |
php+mysql 게시판 만들기 강좌 #1. 준비 (0) | 2022.01.17 |