I am developing a Google Marketplace App. I am using PHP.

I am trying to have an access point to my app which doesn't require the user to have logged into my app (or possibly even Google Apps for that matter), and then once they have submitted the entry point (which just consists of a string) that string is carried through the authentication process so that when they authenticated my app can process that string just as if they had been logged in.

Basically I have a HTML form which is like a cut down version of my app (which can be embedded on a website using an iFrame for example), and when the user fills it out it does an AJAX call to an API in my app which does require authentication, so the authentication process begins, but once it has finished it has lost the original data.

Does anyone know a solution to this?

link|improve this question

57% accept rate
2  
We won't write code for you. But here's a hint. Sessions. – GordonM Jan 29 at 7:33
I don't expect you to write code. Can you explain in more detail how I could use sessions please? – Michael Bates Jan 29 at 7:39
feedback

1 Answer

I am not sure that you need to use Sessions for this - might be overkill. I am not sure the exact specifics of your application, but you might be able to place the data in the $GLOBALS superglobal. Take a look at the documentation: php.net/manual/en/reserved.variables.globals.php

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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