PHP에서는 다음을 사용하여 MySQL 데이터베이스에 연결하고 그 데이터를 HTML 테이블에 표시할 수 있습니다. 다음 단계:
<code class="php">$connection = mysql_connect('localhost', 'root', ''); //The Blank string is the password mysql_select_db('hrmwaitrose'); $query = "SELECT * FROM employee"; //You don't need a ; like you do in SQL $result = mysql_query($query); echo "<table>"; // start a table tag in the HTML while($row = mysql_fetch_array($result)){ //Creates a loop to loop through results echo "<tr><td>" . htmlspecialchars($row['name']) . "</td><td>" . htmlspecialchars($row['age']) . "</td></tr>"; //$row['index'] the index here is a field name } echo "</table>"; //Close the table in HTML mysql_close(); //Make sure to close out the database connection</code>
이 코드에서:
이 코드는 MySQL 데이터베이스의 데이터를 PHP의 HTML 테이블에 표시하기 위한 간단한 템플릿을 제공합니다. mysql_fetch_array는 PHP 7.0.0 이상에서 더 이상 사용되지 않으므로 대신 mysqli_fetch_array()를 사용해야 할 수도 있습니다.
위 내용은 PHP/HTML 테이블에 SQL 데이터베이스의 데이터를 표시하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!