Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been playing around with facebook for the past few days and have written a simple app that asks the user a question about a random friend. I am using ajax to change the question and I though I had it working until I tried it in Internet Explorer. Please bare with my code since I am learning :-D

This work perfect in Firefox and Chrome but does not work in Internet Explorer.

<?php   //******SKIP.PHP
    require_once 'facebook/facebook.php';
    require_once 'lib/db.php';

    $appapikey = '';
    $appsecret = '';
    $facebook = new Facebook($appapikey, $appsecret);
    //$user_id = $_POST["uid"];

    $sql = 'SELECT * FROM questions ORDER BY RAND()';
    $result = querydb('1', $sql);

    if (mysql_num_rows($result) > 0)
    {
        $info = mysql_fetch_array($result);
        $friends = $facebook->api_client->fql_query("SELECT uid2 FROM friend 
                 WHERE uid1=1234567" );
        shuffle($friends);
        $randomUser = json_decode(file_get_contents('https://graph.facebook.com/' .
             $friends[0]["uid2"]));
        echo '<img src="https://graph.facebook.com/' . $friends[0]["uid2"] .
              '/picture?type=large" >';
        echo "Do you think " . $randomUser->name . " " . $info['question'];
    }

<?php  //******INDEX.PHP
require_once 'facebook/facebook.php';
require_once 'lib/db.php';

$appapikey = '';
$appsecret = '';
$facebook = new Facebook($appapikey, $appsecret);
$user_id = $facebook->require_login();
?>

<html>
<head>
<script type="text/javascript">
function skipQuestion(userID){
 var ajaxRequest;  // The variable that makes Ajax possible!

 var currentTime = new Date();
 var seconds= currentTime.getSeconds();
 var url = 'skip.php?=' + seconds;

 try{
  // Opera 8.0+, Firefox, Safari
  ajaxRequest = new XMLHttpRequest();
 } catch (e){
  // Internet Explorer Browsers
  try{
   ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
  } catch (e) {
   try{
    ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
   } catch (e){
    // Something went wrong
    alert("echo :-o");
    return false;
   }
  }
 }
 ajaxRequest.onreadystatechange = function()
 {
  if(ajaxRequest.readyState == 4)
  {
   document.getElementById('stuff').innerHTML = ajaxRequest.responseText;
  }
 }
 ajaxRequest.open("POST", url , true);
 ajaxRequest.send(); 
}

</script>
</head>
<link rel="stylesheet" type="text/css" media="screen" href="http://aafhe8gz.facebook.joyent.us/style.css?v=1.02" />

<body>
<?php

echo '<div id = "main">';
    echo '<div id = "stuff">';
    $sql = 'SELECT * FROM questions ORDER BY RAND() LIMIT 0, 1';
    $result = querydb('1', $sql);
    if (mysql_num_rows($result) > 0)
        $info = mysql_fetch_array($result);

    $friends = $facebook->api_client->fql_query("SELECT uid2 FROM friend WHERE uid1=" . 
          $user_id );
    shuffle($friends);
    $randomUser = json_decode(file_get_contents('https://graph.facebook.com/' .
          $friends[0]["uid2"]));
    echo '<img src="https://graph.facebook.com/' . $friends[0]["uid2"] .
           '/picture?type=large" >';
    echo "Do you think " . $randomUser->name . " " . $info['question'];
    echo '</div>';
    echo '<form id="input"  method="post">';
        echo '<a href="#" onclick="submitForm()">Submit</a>';
 echo ' | ';
 echo '<a href="#" onclick="skipQuestion(' . $user_id . ')">Skip</a>';
    echo '</form>';
echo '</div>';

?>

</body>
share|improve this question
Could you please provide more info - what exactly is not working and what is working? Do you see any errors? etc – serg Aug 5 '10 at 20:19
Any good reason why you're doing AJAX the hard way? Browser issues like this are generally "solved problems". Unless you're doing it for the learning, grab a library or framework for this. – Peter Bailey Aug 5 '10 at 22:16
the error occurs in skip.php when I call my fql query. No I do not see any errors. There is nothing returned past this call. I can insert some output before the call and it will be displayed. Skip.php also works when it opened by itself. – John Aug 9 '10 at 12:20
I took serg555's advice and used an ajax library, phplivex. Again this works on Firefox, Chrome, and some versions of internet explorer. The version of IE, I know it works on is 8.0.760. I know it does not work on 8.0.6001 or 7.0.something. – John Aug 9 '10 at 19:26

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.