在 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中文网其他相关文章!