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.

There doesn't seem to be any specific ways to pass it through as PHP. But for:

        <iframe src="https://www.facebook.com/plugins/registration.php?
                 client_id=MYAPPID&
                 redirect_uri=http://www.timerelief.ca/database/register.php?
                 fields=name,birthday,gender,location,email"
            scrolling="auto"
            frameborder="no"
            style="border:none"
            allowTransparency="true"
            width="100%"
            height="600">
    </iframe>

How would I get the variables in the "fields" of the Facebook Registration plug-in form. I want these to be passed as PHP variables.

share|improve this question
Why not use the PHP SDK supplied by Facebook rather than relying on some nasty hack to get an iframe to send data to your server? – adlawson Feb 28 '12 at 0:44
Do you mean, how to get the form values after the user clicks register? – ifaour Feb 28 '12 at 7:34

1 Answer

Use Javascript to post value to database and then use PHP explode...

For the javascript get the DOM element iframe and then parse the contents with a loop

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.