我正在使用 PHP 制作一个 twitter 应用程序。如果这个问题很初级,请原谅。在我的应用程序中,初始登录页面 (index.php) 包含登录/oauth 代码。如果用户成功登录,我应该完全加载一个新页面还是简单地回显呈现用户个人资料页面的 html。例如:
if(login success)
{
load a file that renders selected user's profile page
}
或类似的东西
if(login success)
{
echo html that renders a profile page.
}