Try it in the shell, something like this?
>>> session.id = {}
>>> session.id['page1'] = 'one'
>>> session.id['page2'] = 2
>>> session.id['page3'] = 'three'
>>> session.id
{'page2': 2, 'page3': 'three', 'page1': 'one'}
On Jan 31, 9:23 pm, Francisco Costa <[email protected]> wrote:
> Hello,
> I want to have dinamic session variables like this:
> session.id
> where id is different from page to page..
>
> I've tried
> id = variable
> session.id
>
> and
> session.id['variable']
>
> without any results.
>
> I would like to be able to open different pages at the same time and
> the browser could get all the session variables.