Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 php 显示 mysql 表,我的意思是显示带有字段名的记录而不指定行名。
例子
|1|姓名1 |地址1 |状态1| <-- 这是记录
还有更多记录...
只是一个想法:
DESCRIBE tablename
SELECT * FROM tablename
如果我理解正确,您想在表格中显示所有记录?
$sql = mysql_query("SELECT * FROM 表")
星号表示您将选择所有行。将表更改为您的表名..
现在你所有的表信息都存储在 $sql 中