在PHP/HTML 表中顯示SQL 資料庫資料
查詢:
如何檢索並在PHP/HTML 表中顯示MySQL 表中的資料?
程式碼庫:
PHP 提供了多種用於連接 MySQL 資料庫和執行查詢的函數。以下是如何使用PHP 連接「employee」表並取得資料並將其顯示在HTML 表中的範例:
<code class="php"><?php $connection = mysql_connect('localhost', 'root', ''); // Assuming there's no password mysql_select_db('hrmwaitrose'); $query = "SELECT * FROM employee"; // Note: No semicolon ";" in SQL query $result = mysql_query($query); echo "<table>"; // Start HTML table while($row = mysql_fetch_array($result)){ // Loop through result rows echo "<tr><td>" . htmlspecialchars($row['name']) . "</td><td>" . htmlspecialchars($row['age']) . "</td></tr>"; //$row['index'] denotes field name } echo "</table>"; // End HTML table mysql_close(); // Close database connection ?></code>
說明:
注意:
mysql_fetch_array() 在 PHP 7.0.0 中已棄用。考慮使用 mysqli_fetch_array() 取代。
以上是如何在 PHP/HTML 表中檢索和顯示資料庫資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!