Page 1 of 1

Passing Variables Securly Over Multiple Pages

Posted: Thu Oct 30, 2008 10:56 pm
by juuuugroid
Hi,

It has been many years since I programmed any php. I am going to be programming some pages in the coming weeks. I need to pass multiple variables between pages. I used to pass the variables through sessions, but it has been so long, I am not sure this is still the current technology. Can anybody tell me how to pass multiple variables between pages?

For example, game scores, previous moves in a game, user positions, user names, etc.

Thanks for your response

Re: Passing Variables Securly Over Multiple Pages

Posted: Fri Oct 31, 2008 4:51 am
by Hannes2k
Hi,
sessions are just fine. There is no other (secure) technology for making a stateless protocol (HTTP) stateful.

Re: Passing Variables Securly Over Multiple Pages

Posted: Fri Oct 31, 2008 8:38 am
by juuuugroid
Thanks for the advice!