웹페이지의 HTML 테이블에 MySQL 데이터베이스 값 표시
HTML 테이블의 데이터베이스 테이블에서 값을 검색하고 표시하려면 다음을 따르세요. 다음 단계를 따르세요.
데이터:
예:
$con = mysqli_connect("localhost", "peter", "abc123", "my_db"); $result = mysqli_query($con, "SELECT * FROM tickets LIMIT 50"); $data = $result->fetch_all(MYSQLI_ASSOC);
데이터 표시:
예:
<table border="1"> <tr> <th>Submission ID</th> <th>Form ID</th> <th>IP</th> <th>Name</th> <th>E-mail</th> <th>Message</th> </tr> <?php foreach($data as $row): ?> <tr> <td><?= htmlspecialchars($row['submission_id']) ?></td> <td><?= htmlspecialchars($row['formID']) ?></td> <td><?= htmlspecialchars($row['IP']) ?></td> <td><?= htmlspecialchars($row['name']) ?></td> <td><?= htmlspecialchars($row['email']) ?></td> <td><?= htmlspecialchars($row['message']) ?></td> </tr> <?php endforeach ?> </table>
이 코드는 HTML을 생성합니다. "티켓" 테이블의 데이터가 포함된 테이블로, 해당 열에 값을 표시합니다.
위 내용은 HTML 테이블에 MySQL 데이터베이스 값을 표시하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!