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 am trying to use the $_GET operator in php to get mycusomvariable from an fb app url to try to append a username, and find that this appears to return no details?

As an example here is the url I'm posting to Facebook:

http://apps.facebook.com/my-app-namespace?username=Test

and here is the php code which should retrieve the string 'Test'

    <?php

      $username = $_GET ['username'];
      echo $username;

    ?>

This should show up in the browser as Test, but shows nothing.

Anyone any ideas on where I'm going wrong?

share|improve this question
2  
I notice a space betwee $_GET and ['username'].. Remove it just to be safe :) – PoeHaH Jul 11 '12 at 10:07

4 Answers

Are you possibly running a old version of PHP, the $_GET command was added in PHP 4.1.0. Try a <?php phpinfo(); ?> to get your current version.

Have a look at the PHP Documentation which shows version numbers.

share|improve this answer
@alfasin the op said it doesn't show up in his browser :- "This should show up in the browser as Test, but shows nothing." – John Mitchell Jul 11 '12 at 10:08
you're right - my bad! – alfasin Jul 11 '12 at 10:08
if(isset($_GET['username'])){
echo " fine" ;
else { 
echo "not set" ; 

And search google for url variables

share|improve this answer

As I know facebook applications are running in the <iframe>. If it is true, then you can not get access to the global $_GET array in your application.

share|improve this answer

Try to rename variable username to something else. Maybe Facebook has blocked that variable name.
Example: http://apps.facebook.com/my-app-namespace?qwerty=Test

<?php
  $username = $_GET ['qwerty'];
  echo $username;
?>
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.