php如何结合html调用数据?

html-css010

php如何结合html调用数据?,第1张

在html中调用php内容,可以用<script src="friendlinks.php"></script>然后在friendlinks.php中调取数据库数据。并输出适当的html,或者输出xml、json都可以,只是图简单的话,只要输出html就行了。

PHP写入HTML文件可以使用file_put_contents,例如:

file_put_contents('a.html', "<html>

<body>hello</body>

</html>")

PHP访问HTML文件可以使用readfile、file等,例如:

readfile('a.html')