tags:

views:

39

answers:

1

Hi!

I am working on a drupal based website. I am creating a shipping solution to be added to the drupal app. we want to use a common login for both shipping solution and drupal . how can we manage the session of drupal with the shipping ?

regards sd

A: 

The $_SESSION variable works quite well. You can store stuff in there and retrieve it on the page load and, like magic, it persists (thanks to code in session.inc).

dmitrig01