The profile picture loads on initial load of my facebook up, however after clicking on another page in my app, and then going back to the index page the profile picture no longer appears. Is there something wrong in my code? I am new to this, ignore the bad site.
How can I get the profile picture to stay loaded after going to another page in my app and then going back home?
https://apps.facebook.com/whatsfordinnerio/
code=
<?php
require 'src/facebook.php';
// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(
'appId' => '???????????????',
'secret' => '***************************',
));
// Get User ID
$user = $facebook->getUser();
if ($user) {
try {
// Proceed knowing you have a logged in user who's authenticated.
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
// Login or logout url will be needed depending on current user state.
if ($user) {
$logoutUrl = $facebook->getLogoutUrl();
} else {
$loginUrl = $facebook->getLoginUrl();
}
// This call will always work since we are fetching public data.
$naitik = $facebook->api('/naitik');
?>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Whats For Dinner</title>
<style type="text/css">
<!--
CSS IS HERE
-->
</style></head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '???????????????', // App ID
channelUrl : 'https://atl02fbssl01.ignitiononeqa.com/', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
frictionlessRequests:true
});
// Additional initialization code here
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
<div class="container">
<div class="header"><!-- end .header -->
<p>What's For Dinner? </p>
</div>
<div class="content">
<table width="453" height="275" align="center">
<tr><div class="fb-like" data-href="https://apps.facebook.com/testappcal/" data- send="true" data-layout="box_count" data-width="450" data-show-faces="true" data- colorscheme="dark" data-font="segoe ui"></div>
<td width="48"><table width="453" height="275" align="center">
<tr>
<th width="342" scope="row"><a href="beef.php"><img src="cow_cc.jpeg" width="305" height="229" class="bord" /></a></th>
<td width="48"><a href="chicken.php"><img src="happy-chicken.jpeg" width="310" height="229" class="bord" /></a></td>
</tr>
<tr>
<td scope="row"><a href="fish.php"><img src="breadfish-color.gif" width="307" height="232" class="bord" /></a></td>
<td><a href="veg.php"><img src="fv7s.gif" width="312" height="231" class="bord" /></a></td>
</tr>
</table> <a href="chicken.php"></a></td>
</tr>
</table>
<p> </p>
<p>Click the image for recipes!</p>
</div>
<div class="footer">
<p>Welcome: <img src="https://graph.facebook.com/<?php echo $user; ?>/picture"> </p>
</div>
<!-- end .container --></div>
</body>
</html>
THANKS SO MUCH! I AM NEW TO THIS SO IGNORE THE BAD SITE. :)