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