0

我使用 PHP 创建了一个动态页面,类似于此处的示例http://tutorialweb.net/membuat-halaman-dinamis-dengan-php/。它运行成功,我有一页list.php包含这样的链接:

<a href="edit.php?uid=<?php echo $data ['id_user']; ?>">View</a>

并重定向到edit.php页面

如何edit.php在保留时加载内容index.php(无重定向)。

4

1 回答 1

-1

在 index.php 中,做一个这样的插入:

include('./edit.php');

或使用 include_once、require 或 require_once

于 2013-07-14T14:41:00.283 回答