单击菜单项时,我希望使用注销函数。
如果我登录并单击“注销”,它会工作,但当我单击另一个页面时,然后单击“注销”,它只会在url末尾添加?注销。
我的密码:
<?php
session_start();
include '../includes/includes.php';
require('../includes/functions.php');
//make sure user is logged in, function will redirect use if not logged in
login_required
我使用的是最新版本的PHP SDK for Facebook (3.2.1)
我想知道,当从sdk中使用base_facebook.php中提供的功能注销时,是否有一种方法可以阻止它真正注销facebook,但仍然删除网站应用程序的会话?
下面是base_facebook.php的注销函数
/**
* Get a Logout URL suitable for use with redirects.
*
* The parameters:
* - next: the url to go to after a successful logout
*
* @param array $params
如何根据当前系统时间选择上的用户?我在mysql数据库中有两列登录时间和注销时间,当用户登录时间或注销时间时,两者都是获取系统时间或当前时间,但我希望根据登录时间或注销时间来选择用户??如果查询从mysql数据库获取行,那么它应该是用户登录或注销时显示用户名?
$query2=mysql_query("SELECT * FROM users WHERE NOW()
ORDER BY logouttime DESC LIMIT 2") or die ("users query2");
$row2=mysql_fetch_array($query2);
我有这样的代码:
function logout()
{
$_SESSION = array(); //destroy all of the session variables
session_destroy();
}
// defaults to welcome view unless a different view is requested
$view = empty($_GET['view']) ? 'welcome' : $_GET['view'];
switch ($view) {
case "lo