如何使用php从上一页到当前页面获取html表数据

时间:2018-07-03 10:03:15

标签: php jquery html

我在(例如,page1.html)html中有一个表,我想在第二页(例如,page2.html)中使用此表的数据。这可能吗?我是php的新手。请帮忙!

1 个答案:

答案 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>