<html>
<head>
</head>
<body>
<table>
<tr><td>id</td></tr>
<?php
mysql_connect('localhost','root','')
mysql_select_db('test')
mysql_query("SET NAMES utf8")
$sql = "select * from 表"
$result = mysql_query($sql)
while($row=mysql_fetch_assoc($result)){
?>
<tr><td><?php echo $row['id']?></tr></td>
<?php
}
?>
</table>
</body>
在html中调用php内容,可以用<script src="friendlinks.php"></script>然后在friendlinks.php中调取数据库数据。并输出适当的html,或者输出xml、json都可以,只是图简单的话,只要输出html就行了。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)