I am developing an application that does remote login, among other things, via cURL.
The remote site issues a session cookie, which I can store in my cookie bank.
I want every user of my site to have a unique session on a remote site. My application works fine with one user (me), but I'm not sure how to make it multi-user.
My first thought is to set a session variable for my app users, and then use that variable as the cookie name of the cookie, but that seems ugly.
Is there a built-in PHP / cURL function that will transfer a unique session from a remote server to my users?
Thanks so much for any help.
Jack
source share