将SQL数据库中的数据显示到php / html表中

。这个问题需要更加集中。它当前不接受答案。


更新问题,使其仅通过编辑此帖子来关注一个问题。

10个月前关闭。

好的,我在phpmyadmin(sql)上有一个数据库,我想将我的一个表显示为HTML /

PHP上的表。我已经在网上搜索过,无法实现此功能,所以我想知道是否有人可以帮助我进行编码?

database = 'hrmwaitrose'

username = 'root'

host = 'localhost'

没有密码

我想显示表名中的数据 employee

回答:

您说您在PhpMyAdmin上有一个数据库,因此您正在使用MySQL。PHP提供了用于连接到MySQL数据库的功能。

$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>" . $row['name'] . "</td><td>" . $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

在while循环中(每次遇到结果行时都会运行),我们进行回显,以创建新的表行。我还添加了一个以包含字段。

这是一个非常基本的模板。您将使用mysqli_connect而不是mysql_connect看到其他答案。mysqli代表mysql改良。它提供了更好的功能范围。您会注意到它也有些复杂。这取决于您的需求。

以上是 将SQL数据库中的数据显示到php / html表中 的全部内容, 来源链接: utcz.com/qa/430876.html

回到顶部