在 PHP/HTML 表中顯示 MySQL 資料庫資料
MySQL 資料庫廣泛用於 Web 開發中儲存和管理資料。要在PHP/HTML 表中存取和顯示MySQL 資料庫中的數據,請按照以下步驟操作:
<code class="php">$connection = mysql_connect('localhost', 'root', ''); // Replace with your credentials mysql_select_db('hrmwaitrose');</code>
建構SQL 查詢以從所需表格(例如「employee」)中擷取資料。
<code class="php">$query = "SELECT * FROM employee";</code>
<code class="php">$result = mysql_query($query);</code>
<code class="php">echo "<table border='1'>"; echo "<tr><th>Name</th><th>Age</th></tr>";</code>
<code class="php">while ($row = mysql_fetch_array($result)) { echo "<tr><td>" . $row['name'] . "</td><td>" . $row['age'] . "</td></tr>"; }</code>
<code class="php">echo "</table>"; mysql_close($connection);</code>
以上是如何在 PHP/HTML 表中顯示 MySQL 資料庫資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!