我有一个主页 home.php。在此页面中,我在左侧添加了一列,它使用 include_once() 函数从文件 profile.php 中添加用户的通用配置文件。
就像这样:
<div class='userprofile'>
<?php
include_once('profile.php')
?>
</div>
现在我想通过使用像“editprofile.php”这样的页面来编辑这个配置文件。
用户应单击其个人资料顶部可见的“EditProfile”按钮,然后在同一页面上(无需重定向),他可以编辑他的个人资料。
如何实施?