我在(例如,page1.html)html中有一个表,我想在第二页(例如,page2.html)中使用此表的数据。这可能吗?我是php的新手。请帮忙!
答案 0 :(得分:0)
在table.html
中扩展此表,并在两个页面中都使用include "table.html";
,不要忘记将文件扩展名.html
更改为.php
http://php.net/manual/fr/function.include.php
http://php.net/manual/fr/function.require.php
table.html
<table>
<tr>
<td>Test 1</td>
<td>Test 2</td>
<td>Test 3</td>
</tr>
</table>
page1.php
<html>
<head></head>
<body>
<?php include 'table.html'; ?>
</body>
</html>
page2.php
<html>
<head></head>
<body>
<?php include 'table.html'; ?>
</body>
</html>