Sessions

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Sanglier
Forum Newbie
Posts: 7
Joined: Mon Jul 19, 2004 8:56 am

Sessions

Post by Sanglier »

Hi,

I am using sessions to maintain state. When testing with Opera 7.54 I need to enable cookies in order to get it working. Why is that? Isn't sessions supposed to be independent of the client browser?

I do not need (or wish) to set cookies on the visitors harddisks, nor require that they enable cookies. Is there a way around the problem?
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

if your server is set to only do session cookies, then yeah, that could be a problem. The session should create a url variable named with your session name, unless you are using your own, in which case, it could be anything..
Sanglier
Forum Newbie
Posts: 7
Joined: Mon Jul 19, 2004 8:56 am

Post by Sanglier »

I am rathe rnew to this. Could you give an example?
User avatar
tim
DevNet Resident
Posts: 1165
Joined: Thu Feb 12, 2004 7:19 pm
Location: ohio

Post by tim »

anything with the session id in the url
Post Reply