创建动态用户名链接,该链接将重定向到用户配置文件

时间:2014-05-13 06:00:56

标签: php html ajax

这可能是一个非常基本的问题,但我想知道如何实现这个PHP和Ajax或任何建议的脚本语言。

我想动态生成一个链接,打开用户个人资料页面,有人会建议最好的方法。

提前感谢您的回复

1 个答案:

答案 0 :(得分:3)

通常,动态链接看起来像这样:

mysite.com/user.php?id=23

然后,在user.php上你会有这样的事情:

if (!isset($_GET['id']))
    die("No user information!!");
else {
    $user_id = $_GET['id'];
    // Now use $id to query the database and get user information
}

要在另一个页面上生成链接,您只需执行以下操作:

<a href="user.php?id=<?=$user_id?>">My Profile Page</a>

其中$user_id是当前登录用户的ID