动态页面链接id_user已修复索引

时间:2013-07-14 14:21:25

标签: php mysql

我使用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的内容。

1 个答案:

答案 0 :(得分:-1)

在index.php中

,做一个这样的插曲:

include('./edit.php');

或使用include_once,require或require_once