Re: Sessions Programming Web Development by diafol sessions are the way to do it. Forums depend on sessions. SESSIONS variable not working on ipage Programming Web Development by centenond Sessions wont work on ipage, I know there are post like … Re: Sessions...help me please Programming Web Development by sfbell Sessions are variables like cookies. You use them to store data … the next. Here is the php.net documentation intro on sessions: 'Session support in PHP consists of a way to preserve… Re: i dont understand sessions, please guide Programming Web Development by jimmyo88 sessions can be useful for a variety of reasons. One is …, "hey im gonna be using sessions on this page". The way everybody uses sessions is by using a variable like… Re: Need a tutorial on sessions Programming Web Development by samaru Sessions are handled different in older versions of PHP. Like himerus said, post some code and what version of PHP you're using. Re: Login and Main pages (Sessions again) Programming Web Development by diafol sessions allow you to pass objects in addition to variables. Just include the class in all the relevant pages. If you have methods in your class, they need to be available for the object. *Need more info* Re: How to end a session immediately when the browser closes? Programming Web Development by tgreer Sessions are controlled by the web server... you can't terminate them with JavaScript code. Usually, sessions are set to time-out in 15 minutes (I think that's IIS' default, different web servers may vary). How to end a session immediately when the browser closes? Programming Web Development by Naters_uk Sessions DO NOT end when a user closes their browser. There … How to end a session immediately when the browser closes? Programming Web Development by Naters_uk Sessions DO NOT end when a user closes their browser. There … Re: Session Programming Web Development by DanceInstructor Sessions expire automatically, I don't think you can force a … Re: php session to allow user to stay signed in forever Programming Web Development by Excizted Sessions funnily only lasts for a session, That's how they … Re: What are the differences between session and cookies Programming Web Development by NardCake Sessions are way more safe. Although it creates a cookie, all … Re: How to expire a session Programming Web Development by Lafinboy Sessions are set automatically by the server on page load, and … our understanding of your situation if you detail exactly what sessions you are refering to and how they are being assigned… Re: condition check of radio button Programming Web Development by peter_budo Sessions is the answer, and before you ask about the use of sessions have look [URL="http://www.daniweb.com/forums/thread141776.html"]here[/URL] (near the end you will find section on JSTL) Re: Simple Login System Programming Web Development by mschroeder Sessions is really the only way to persist data over multiple requests in php. So yes in my opinion sessions would be the best way to use it over multiple requests. Re: Is it safe to store in Session Variable? Programming Web Development by BenzZz Sessions should be fine, and the data could be secured more with encryption as stated in the post above. Sessions are actually PHP's way of encapsulating cookies thus cookies still are being used however session data cannot be accessed directly as opposed to cookies. Re: Help with IP ADDRESS Programming Web Development by MitkOK Sessions ? - [COLOR="Green"][B][I]Mitko Kostov[/I][/B][/COLOR] Re: script not allowing the user to login again if already logged in Programming Web Development by gralex07 Sessions would work the best for this, if you add [icode]&… Re: Login and Access Prevention Programming Software Development by masijade Sessions Google that. [url]http://java.sun.com/javaee/5/docs/tutorial/doc/[/url] Re: count down timer problem in php Programming Web Development by diafol Sessions don't have to be propogated by cookie, you can use db, $_GET, $_POST. Indeed, the more secure examples use a db to store session values. Seeing as you've turned this into a point-scoring exercise Josh, I believe that Rin is still miles ahead. Pah! Pesky kids ... grumble ... mutter ... doh! Re: session created by A Client, B client logs in with same usename logout A? Programming Web Development by network18 Sessions data is stored on the server, it got nothing to … Re: Session vs Hidden Textboxes Programming Web Development by peter_budo Sessions as they been designed for this task Re: how to make a chat room without using file or table Programming Web Development by digital-ether Sessions by default PHP settings will store to files. As already … Re: Manually Setting POST Variables? Programming Web Development by RisTar Sessions wont work if cookies are disabled in the browser.. You'd be surprised, some mobile phone browsers has cookies disabled by default! [QUOTE]How about storing the information in a session variable[/QUOTE] Re: php and mysql Programming Databases by MagicMedia Sessions: [url]http://www.php.net/manual/en/function.session-start.php[/url] Cookies: [url]http://www.php.net/manual/en/function.setcookie.php[/url] Re: SESSION data Programming Web Development by Webville312 Sessions are safer, and much easier to use. The issue with cookies is that the user can turn them off. For Instance, I may decide to turn off cookies when I am browsing the internet; When I get to your site, then it'll be hard to identify me, coz my cookies are turned off. Re: end a web session using the navigation buttons Digital Media UI / UX Design by Octet Sessions need some form of server side scripting language to run, … Re: How to insert cookie in data base table Programming Web Development by diafol Sessions and cookies in this context have different uses. A cookie … Re: How to redirect dynamic url using php Programming Web Development by almostbob sessions: established on the preferred access page, with appropriate robots.txt entries to please google image searchbot HTTP_REFERER checks (oops already noted) Re: i want to destroyed session when browser close but not to close tab Programming Web Development by OsaMasw sessions destroy itself after 30 minutes from time created, or when user closes the browser