I am desperately in need for help to resolve this issue - stucked for 2 days trying to google for a solution!
Basically, i am developing a facebook flash application. I have a fbmain.php and index.php which will check if user is signed into facebook. If so, then it will load the .swf file which is my flash game. I am using $fbme[id] to retrieve the id of the facebook user so that i could use it retrieve the player's information from the database to initialize the game - so called load from previous saved game progess.
For the save game to work, my idea is to store the facebook user's id, "$fbme[id]" as a $_SESSION variable or $GLOBALS variable, so that when the .swf game loads, it will in turn load "initialize-playerstats.php" which will load player's information from the database. the "initialize-playerstats.php" is suppose to retrieve the stored variable, either $_SESSIONor $GLOBALS and matches the id with the database and return results accordingly. but somehow, the variables dosen't seem to be retrieved and hence could not load any data from the database.
In my fbmain.php:
<?php
$fbconfig['appid'] = "XXX";
$fbconfig['api'] = "XXX";
$fbconfig['secret'] = "XXX";
try {
include_once "facebook.php";
} catch (Exception $o) {
echo '<pre>';
print_r($o);
echo '</pre>';
}
// Create our Application instance.
$facebook = new Facebook(array(
'appId' => $fbconfig['appid'],
'secret' => $fbconfig['secret'],
'cookie' => true,
));
$session = $facebook->getSession();
$loginUrl = $facebook->getLoginUrl(
array(
'canvas' => 1,
'fbconnect' => 0,
'req_perms' => 'email,publish_stream,status_update,user_birthday, user_location,user_work_history'
)
);
$fbme = null;
if (!$session) {
echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
exit;
} else {
try {
$uid = $facebook->getUser();
$fbme = $facebook->api('/me');
} catch (FacebookApiException $e) {
echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
exit;
}
}
// Session based graph API call.
if ($session) {
try {
$uid = $facebook->getUser();
$fbme = $facebook->api('/me');
} catch (FacebookApiException $e) {
d($e);
}
}
function d($d) {
echo '<pre>';
print_r($d);
echo '</pre>';
}
?>
And in my index.php: (codes summarized to make reading neater)
<?php
//session_start();
include_once "fbmain.php";
$config['baseurl'] = "http://www.xxx.com/xxx/development/index.php";
//method 1, tried to use session variable.. not working.
$_SESSION['fbId'];
//method 2, tried using $GLOBALS..not working
$GLOBALS['fbId']= $fbme[id];
//method 3, tried using this method got somewhere while googling
$GLOBALS['fbId'];
// the defined constant used to reference the global var
define(_SYSTEM_, 'fbId');
class Foo {
// a method where you'd liked to access the global var
public function bar() {
print_r($this->{_SYSTEM_});
}
// the magic happens here using php5 overloading
public function __get($d) {
return $GLOBALS[$d];
}
}
//tried either of this method one at a time
$_SESSION['fbId'] = $fbme[id];
$GLOBALS['fbId'] = $fbme[id];
In initialize-playerstats.php:
<?php
require_once('docs/php/database.php');
include('docs/php/dbinfo.inc.php');
//tried method 1 to retrieve..failed
$fbId = $_SESSION['fbId'];
//tried method 2..failed
$fbId = $GLOBALS['fbId'];
//tried method 3..failed
$foo = new Foo();
$fbId = $foo->bar();
// create new instance of mysqli class and connect to database
$db = new Database($hostname, $username, $password, $database);
$sql = "SELECT * FROM player WHERE fbId= $fbId";
$result = $db->query($sql);
while ($row = $result->fetch_assoc()) {
$pWood = $row['wood'];
$pWater = $row['water'];
$pFood = $row['food'];
$pLevel = $row['level'];
$pExp = $row['exp'];
$cPopulation = $row['cPopulation'];
$mPopulation = $row['mPopulation'];
echo "playerStats=$pWood/$pWater/$pFood/$pLevel/$pExp/$cPopulation/$mPopulation";
}
$db->close();
?>
Anyone please help me out..i will really appreciate it.. anyway to allow variables to be passed between php will help a great deal. somehow using $_SESSION[''] or $GLOBALS is not working.. thanks in advance!
session_start()? We might need to see that as well. – Dave Child Apr 3 '11 at 7:38